chore: default parameter tweaks

This commit is contained in:
iff 2025-04-08 20:09:59 +02:00
parent 998b27f879
commit 8acb40af95
2 changed files with 4 additions and 4 deletions

View file

@ -223,7 +223,7 @@ impl Conf {
if let Some(url) = option_env!("_DEF_PR_AI_URL") {
url.to_string()
} else {
"https://iff.envs.net/completions.py".to_string()
"https://iff.envs.net/stream-completions.py".to_string()
}
}
};
@ -237,7 +237,7 @@ impl Conf {
if let Some(model) = option_env!("_DEF_PR_AI_MODEL") {
model.to_string()
} else {
"qwen-2.5-32b".to_string()
"{{ _PR_AI_MODEL }}".to_string()
}
}
};