fix: configure codex with a longer timeout

refactor: param names
This commit is contained in:
Fahad
2025-10-21 10:35:44 +04:00
parent 04132f1459
commit d2773f488a
47 changed files with 232 additions and 194 deletions

View File

@@ -13,7 +13,11 @@ def test_first_response_persisted_in_conversation_history(tmp_path):
storage._store.clear() # type: ignore[attr-defined]
tool = ChatTool()
request = ChatRequest(prompt="First question?", model="local-llama", working_directory=str(tmp_path))
request = ChatRequest(
prompt="First question?",
model="local-llama",
working_directory_absolute_path=str(tmp_path),
)
response_text = "Here is the initial answer."
# Mimic the first tool invocation (no continuation_id supplied)