* fix: setting extension placeholder apikey * fix: extension settings migration --------- Co-authored-by: Louis <louis@jan.ai>
25 lines
707 B
JSON
25 lines
707 B
JSON
[
|
|
{
|
|
"key": "tritonllm-api-key",
|
|
"title": "API Key",
|
|
"description": "The Triton LLM API uses API keys for authentication.",
|
|
"controllerType": "input",
|
|
"controllerProps": {
|
|
"placeholder": "Insert API Key",
|
|
"value": "",
|
|
"type": "password",
|
|
"inputActions": ["unobscure", "copy"]
|
|
}
|
|
},
|
|
{
|
|
"key": "chat-completions-endpoint",
|
|
"title": "Chat Completions Endpoint",
|
|
"description": "The endpoint to use for chat completions.",
|
|
"controllerType": "input",
|
|
"controllerProps": {
|
|
"placeholder": "http://localhost:8000/v2/models/tensorrt_llm_bls/generate",
|
|
"value": "http://localhost:8000/v2/models/tensorrt_llm_bls/generate"
|
|
}
|
|
}
|
|
]
|