File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
tests/integration/frameworks Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 31
31
GEMINI_API_KEY : ${{ secrets.GEMINI_API_KEY }}
32
32
MISTRAL_API_KEY : ${{ secrets.MISTRAL_API_KEY }}
33
33
OPENAI_API_KEY : ${{ secrets.OPENAI_API_KEY }}
34
+ XAI_API_KEY : ${{ secrets.XAI_API_KEY }}
34
35
run : pytest tests/integration/frameworks -v -k "TINYAGENT" --cov --cov-report=xml --cov-append
35
36
36
37
- name : Upload coverage reports to Codecov
Original file line number Diff line number Diff line change @@ -114,6 +114,7 @@ class Steps(BaseModel):
114
114
"anthropic/claude-3-5-haiku-latest" ,
115
115
"gemini/gemini-2.5-flash" ,
116
116
"openai/gpt-4.1-nano" ,
117
+ "xai/grok-3-mini-latest" ,
117
118
DEFAULT_SMALL_MODEL_ID ,
118
119
],
119
120
)
@@ -152,7 +153,7 @@ def write_file(text: str) -> None:
152
153
pytest .skip (f"{ env_check ['missing_keys' ]} needed for { model_id } " )
153
154
154
155
model_args = get_default_agent_model_args (agent_framework )
155
- if "gemini" in model_id :
156
+ if "gemini" in model_id or "xai" in model_id :
156
157
model_args ["drop_params" ] = True
157
158
158
159
tools = [
You can’t perform that action at this time.
0 commit comments