fix: model in agents via api

This commit is contained in:
Alex
2025-11-25 11:50:20 +00:00
parent 17698ce774
commit 03bcd69704
2 changed files with 17 additions and 6 deletions

View File

@@ -37,7 +37,7 @@ OPENAI_MODELS = [
supports_tools=True,
supports_structured_output=True,
supported_attachment_types=OPENAI_ATTACHMENTS,
context_window=400000,
context_window=200000,
),
),
AvailableModel(
@@ -49,7 +49,7 @@ OPENAI_MODELS = [
supports_tools=True,
supports_structured_output=True,
supported_attachment_types=OPENAI_ATTACHMENTS,
context_window=400000,
context_window=200000,
),
)
]
@@ -133,7 +133,7 @@ GOOGLE_MODELS = [
supports_tools=True,
supports_structured_output=True,
supported_attachment_types=GOOGLE_ATTACHMENTS,
context_window=20000, # Set low for testing compression
context_window=2000000,
),
),
]