Closed as not planned
Description
How to make the LiteLLM models run in Reasoning mode?
I saw that exists the reasoning
prop, but it doesn't clear to use...
model = LitellmModel(model="gemini/gemini-2.5-pro-preview-05-06", api_key=GEMINI_API_KEY)
agent= Agent[Context](
name="An Agent",
model=gemini_model,
instructions=f"""
Useful Agent
""",
model_settings=ModelSettings(tool_choice="auto", reasoning="????")
)