Skip to content

Commit 2b15f83

Browse files
committed
fix: update model name in examples to use 'brainusai-thinking'
1 parent c3c8814 commit 2b15f83

2 files changed

Lines changed: 26 additions & 2 deletions

File tree

examples/basic_usage.py

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ async def main():
3737
response = await client.query(
3838
query="Explain inheritance in programming",
3939
store_id="your_store_id", # Optional
40-
model="gemini-2.5-flash", # Optional
40+
model="brainusai-thinking", # Optional
4141
filters=QueryFilters(subject="ICT", grade="12"),
4242
)
4343
print(f"Answer: {response.answer[:200]}...\n")
@@ -70,3 +70,15 @@ async def main():
7070

7171

7272

73+
74+
75+
76+
77+
78+
79+
80+
81+
82+
83+
84+

src/brainus_ai/client.py

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ async def query(
9393
... query="What is Object-Oriented Programming?",
9494
... store_id="abc123",
9595
... filters=QueryFilters(subject="ICT", grade="12"),
96-
... model="gemini-2.5-flash"
96+
... model="brainusai-thinking"
9797
... )
9898
>>> print(response.answer)
9999
>>> for citation in response.citations:
@@ -233,3 +233,15 @@ async def __aexit__(self, *args: Any) -> None:
233233

234234

235235

236+
237+
238+
239+
240+
241+
242+
243+
244+
245+
246+
247+

0 commit comments

Comments
 (0)