We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Our readme here doesn't yet cover how to handle the different LLM app config options, including the new "unconfigured" status added in #350 .
The general UX approach we'd like to model is:
Once our readme has a trivial example, I can start nudging different squads to use this approach (plus get some UX input on how they should do it).
The text was updated successfully, but these errors were encountered:
Some example responses that may be useful here:
Plugin disabled:
{ "message": "Plugin not found" }
Plugin enabled but not configured:
{ "details": { "openAI": { "configured": false, "error": "No functioning models are available", "models": { "base": { "error": "OpenAI not configured", "ok": false }, "large": { "error": "OpenAI not configured", "ok": false } }, "ok": false }, "vector": { "enabled": false, "ok": false }, "version": "0.10.4" }, "message": "", "status": "OK" }
Plugin enabled but "Disable all LLM features in Grafana" chosen (i.e. opted-out):
{ "details": { "openAI": { "configured": true, "error": "LLM functionality is disabled", "models": null, "ok": false }, "vector": { "enabled": false, "ok": false }, "version": "0.10.4" }, "message": "", "status": "OK" }
The @grafana/llm has two relevant functions:
@grafana/llm
health
openAI
enabled
configured
ok
It sounds like we want to encourage people to use health and use the value of configured to prompt the user to opt-in?
Sorry, something went wrong.
No branches or pull requests
Our readme here doesn't yet cover how to handle the different LLM app config options, including the new "unconfigured" status added in #350 .
The general UX approach we'd like to model is:
Once our readme has a trivial example, I can start nudging different squads to use this approach (plus get some UX input on how they should do it).
The text was updated successfully, but these errors were encountered: