We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85b7535 commit 907f390Copy full SHA for 907f390
stagehand/llm/client.py
@@ -94,6 +94,10 @@ def create_response(
94
"No model specified for chat completion (neither default_model nor model argument)."
95
)
96
97
+ # Standardize gemini provider to google
98
+ if completion_model.startswith("google/"):
99
+ completion_model = completion_model.replace("google/", "gemini/")
100
+
101
# Prepare arguments directly from kwargs
102
params = {
103
"model": completion_model,
tests/functional/test_sync_client.py
0 commit comments