AI-Studio/app/MindWork AI Studio/Assistants/Builder/AssistantBuilderLuaResponse.schema.json
nilskruthoff a1d2ff32fc
Some checks are pending
Build and Release / Determine run mode (push) Waiting to run
Build and Release / Read metadata (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-apple-darwin, osx-arm64, macos-latest, aarch64-apple-darwin, dmg,app,updater, dmg) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-pc-windows-msvc.exe, win-arm64, windows-latest, aarch64-pc-windows-msvc, nsis,updater, nsis) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-unknown-linux-gnu, linux-arm64, ubuntu-22.04-arm, aarch64-unknown-linux-gnu, appimage,updater, appimage) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-apple-darwin, osx-x64, macos-latest, x86_64-apple-darwin, dmg,app,updater, dmg) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-pc-windows-msvc.exe, win-x64, windows-latest, x86_64-pc-windows-msvc, nsis,updater, nsis) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-unknown-linux-gnu, linux-x64, ubuntu-22.04, x86_64-unknown-linux-gnu, appimage,updater, appimage) (push) Blocked by required conditions
Build and Release / Prepare & create release (push) Blocked by required conditions
Build and Release / Publish release (push) Blocked by required conditions
Added a no-code assistant builder (#823)
2026-07-05 17:48:00 +02:00

85 lines
1.8 KiB
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://mindwork.ai/ai-studio/assistant-builder-lua-response.schema.json",
"title": "Assistant Builder Lua Response",
"type": "object",
"additionalProperties": false,
"required": [
"schema_version",
"plugin",
"assistant",
"full_lua"
],
"properties": {
"schema_version": {
"type": "string",
"enum": [
"assistant_builder_lua_response_v1"
]
},
"plugin": {
"type": "object",
"additionalProperties": false,
"required": [
"name",
"description",
"categories"
],
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"description": {
"type": "string",
"minLength": 1
},
"categories": {
"type": "array",
"minItems": 1,
"items": {
"type": "string",
"minLength": 1
}
}
}
},
"assistant": {
"type": "object",
"additionalProperties": false,
"required": [
"title",
"description",
"system_prompt",
"submit_text",
"allow_ai_studio_profiles"
],
"properties": {
"title": {
"type": "string",
"minLength": 1
},
"description": {
"type": "string",
"minLength": 1
},
"system_prompt": {
"type": "string",
"minLength": 1
},
"submit_text": {
"type": "string",
"minLength": 1
},
"allow_ai_studio_profiles": {
"type": "boolean"
}
}
},
"full_lua": {
"type": "string",
"minLength": 1
}
}
}