mirror of
https://github.com/home-assistant/core.git
synced 2025-12-27 06:28:31 +00:00
* Add ollama conversation agent * Change iot class * Much better default template * Slight adjustment to prompt * Make casing consistent * Switch to ollama Python fork * Add prompt to tests * Rename to "ollama" * Download models in config flow * Update homeassistant/components/ollama/config_flow.py --------- Co-authored-by: Paulus Schoutsen <balloob@gmail.com>
34 lines
810 B
JSON
34 lines
810 B
JSON
{
|
|
"config": {
|
|
"step": {
|
|
"user": {
|
|
"data": {
|
|
"url": "[%key:common::config_flow::data::url%]",
|
|
"model": "Model"
|
|
}
|
|
},
|
|
"download": {
|
|
"title": "Downloading model"
|
|
}
|
|
},
|
|
"error": {
|
|
"cannot_connect": "[%key:common::config_flow::error::cannot_connect%]",
|
|
"download_failed": "Model downloading failed",
|
|
"unknown": "[%key:common::config_flow::error::unknown%]"
|
|
},
|
|
"progress": {
|
|
"download": "Please wait while the model is downloaded, which may take a very long time. Check your Ollama server logs for more details."
|
|
}
|
|
},
|
|
"options": {
|
|
"step": {
|
|
"init": {
|
|
"data": {
|
|
"prompt": "Prompt template",
|
|
"max_history": "Max history messages"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|