fix(llm.py): remove unnecessary thinking_kwargs from ChatOpenAI parameters to streamline client creation

This commit is contained in:
Ariel Frischer 2025-03-12 11:50:32 -07:00
parent 77a256317a
commit b6f0f6a577
1 changed files with 0 additions and 1 deletions

View File

@ -292,7 +292,6 @@ def create_llm_client(
return ChatOpenAI(
**{
**openai_kwargs,
**thinking_kwargs,
"timeout": LLM_REQUEST_TIMEOUT,
"max_retries": LLM_MAX_RETRIES,
}