-
Steps to reproduce
Expected behaviorGet the response from inside Nextcloud Assistant Actual behaviorGet no response, only error message. Other informationHost OSDebian 12 Output of
|
Beta Was this translation helpful? Give feedback.
Replies: 4 comments
-
Hi @apfelcast thanks for the report. I had a look and could reproduce the issue. It looks like the chosen model for text completion is not correctly set in the database:
(it misses the Because of that, it tries to use the default model DEFAULT_COMPLETION_MODEL_ID = 'gpt-3.5-turbo';. Unfortunately, one cannot even set a value in the admin integration_openai settings as any default model like e.g. ggml-gpt4all-j.bin is pre-selected and cannot be removed nor updated and thus is not updated in the backend. This is a bug in the integration_openai app and needs to be reported there. |
Beta Was this translation helpful? Give feedback.
-
Just FYI: I informed the responsible team internally about the bug and hope that it fixes it soon. However it is probably indeed useful if you open an issue for this in the linked repo. |
Beta Was this translation helpful? Give feedback.
-
Hi @szaimen thanks for debugging this issue! I will open an issue at the linked repo. |
Beta Was this translation helpful? Give feedback.
-
Thanks!
In theory you should be able to set this value via occ config:app:set but I have not found the correct command for this yet... |
Beta Was this translation helpful? Give feedback.
Hi @apfelcast thanks for the report. I had a look and could reproduce the issue. It looks like the chosen model for text completion is not correctly set in the database:
(it misses the
"default_completion_model_id": "the model"
value).Because of that, it tries to use the default model DEFAULT_COMPLETION_MODEL_ID = 'gpt-3.5-turbo';.
Unfortunately, one cannot even set a value in the admin int…