Merge remote-tracking branch 'origin/master' into fix-config
This commit is contained in:
commit
4e301d17cd
|
|
@ -10,7 +10,7 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
configPath := flag.String("config", "./config/config_test.yaml", "Path to configuration file")
|
configPath := flag.String("config", "./config/config.yaml", "Path to configuration file")
|
||||||
onBot := flag.String("bot", "", "bot start")
|
onBot := flag.String("bot", "", "bot start")
|
||||||
cron := flag.String("cron", "", "close")
|
cron := flag.String("cron", "", "close")
|
||||||
flag.Parse()
|
flag.Parse()
|
||||||
|
|
|
||||||
|
|
@ -4,13 +4,13 @@ server:
|
||||||
host: "0.0.0.0"
|
host: "0.0.0.0"
|
||||||
|
|
||||||
ollama:
|
ollama:
|
||||||
base_url: "http://172.17.0.1:11434"
|
base_url: "http://192.168.6.115:11434"
|
||||||
# model: "qwen3:8b"
|
model: "qwen3:8b"
|
||||||
# generate_model: "qwen3:8b"
|
generate_model: "qwen3:8b"
|
||||||
# mapping_model: "qwen3:8b"
|
mapping_model: "qwen3:8b"
|
||||||
model: "qwen3-coder:480b-cloud"
|
# model: "qwen3-coder:480b-cloud"
|
||||||
generate_model: "qwen3-coder:480b-cloud"
|
# generate_model: "qwen3-coder:480b-cloud"
|
||||||
mapping_model: "deepseek-v3.2:cloud"
|
# mapping_model: "deepseek-v3.2:cloud"
|
||||||
vl_model: "qwen2.5vl:3b"
|
vl_model: "qwen2.5vl:3b"
|
||||||
timeout: "120s"
|
timeout: "120s"
|
||||||
level: "info"
|
level: "info"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue