**Motivations:** - Expose AnythingLLM API workspaces from the editor against ia.enso public URL **Root causes:** - N/A (new capability) **Correctifs:** - N/A **Evolutions:** - Extension folder with list/open UI commands and API client - Docs index and feature note **Pages affectées:** - extensions/anythingllm-workspaces/* - docs/README.md - docs/features/anythingllm-vscode-extension.md
56 lines
1.5 KiB
JSON
56 lines
1.5 KiB
JSON
{
|
|
"name": "anythingllm-workspaces",
|
|
"displayName": "AnythingLLM Workspaces (ia.enso)",
|
|
"description": "List AnythingLLM workspaces via your proxied instance (e.g. ia.enso.4nkweb.com/anythingllm).",
|
|
"version": "0.1.0",
|
|
"publisher": "4nk",
|
|
"license": "MIT",
|
|
"engines": {
|
|
"vscode": "^1.85.0"
|
|
},
|
|
"categories": [
|
|
"Other"
|
|
],
|
|
"activationEvents": [
|
|
"onStartupFinished"
|
|
],
|
|
"main": "./out/extension.js",
|
|
"contributes": {
|
|
"configuration": {
|
|
"title": "AnythingLLM",
|
|
"properties": {
|
|
"anythingllm.baseUrl": {
|
|
"type": "string",
|
|
"default": "https://ia.enso.4nkweb.com/anythingllm",
|
|
"markdownDescription": "Public base URL of AnythingLLM (nginx path `/anythingllm/`, no trailing slash required)."
|
|
},
|
|
"anythingllm.apiKey": {
|
|
"type": "string",
|
|
"default": "",
|
|
"markdownDescription": "AnythingLLM API key (UI: **Settings → API Keys**). Prefer **User** settings to avoid committing secrets."
|
|
}
|
|
}
|
|
},
|
|
"commands": [
|
|
{
|
|
"command": "anythingllm.listWorkspaces",
|
|
"title": "AnythingLLM: List workspaces"
|
|
},
|
|
{
|
|
"command": "anythingllm.openWebUi",
|
|
"title": "AnythingLLM: Open web UI"
|
|
}
|
|
]
|
|
},
|
|
"scripts": {
|
|
"compile": "tsc -p ./",
|
|
"watch": "tsc -watch -p ./",
|
|
"vscode:prepublish": "npm run compile"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.11.0",
|
|
"@types/vscode": "^1.85.0",
|
|
"typescript": "^5.3.3"
|
|
}
|
|
}
|