fix(test): provide required model config keys to prevent KeyError on base_url
This commit is contained in:
parent
f8e4233e67
commit
7f485f588e
1 changed files with 4 additions and 1 deletions
|
|
@ -187,7 +187,10 @@ def test_codex_provider_replaces_incompatible_default_model(monkeypatch):
|
||||||
monkeypatch.delenv("LLM_MODEL", raising=False)
|
monkeypatch.delenv("LLM_MODEL", raising=False)
|
||||||
monkeypatch.delenv("OPENAI_MODEL", raising=False)
|
monkeypatch.delenv("OPENAI_MODEL", raising=False)
|
||||||
# Ensure local user config does not leak a model into the test
|
# Ensure local user config does not leak a model into the test
|
||||||
monkeypatch.setitem(cli.CLI_CONFIG, "model", {})
|
monkeypatch.setitem(cli.CLI_CONFIG, "model", {
|
||||||
|
"default": "",
|
||||||
|
"base_url": "https://openrouter.ai/api/v1",
|
||||||
|
})
|
||||||
|
|
||||||
def _runtime_resolve(**kwargs):
|
def _runtime_resolve(**kwargs):
|
||||||
return {
|
return {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue