We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92068aa commit 67023ceCopy full SHA for 67023ce
src/schema/manifest.ts
@@ -27,6 +27,7 @@ export const pluginManifestSchema = z.object({
27
}),
28
openapi: z.string().optional(),
29
settings: JSONSchema.optional(),
30
+ systemRole: z.string().optional(),
31
ui: z
32
.object({
33
height: z.number().optional(),
src/types/manifest.ts
@@ -71,6 +71,7 @@ export interface LobeChatPluginManifest {
71
meta: Meta;
72
openapi?: string;
73
settings?: PluginSchema;
74
+ systemRole?: string;
75
/**
76
* plugin runtime type
77
* @default default
0 commit comments