Commit ·
e1031ca
1
Parent(s): 18a71d6
New model used for image tool.
Browse files- modules/tools.py +1 -1
modules/tools.py
CHANGED
|
@@ -19,7 +19,7 @@ def image_description(question: str, image_url: str) -> str:
|
|
| 19 |
|
| 20 |
client = genai.Client()
|
| 21 |
response = client.models.generate_content(
|
| 22 |
-
model="gemini-2.5-flash",
|
| 23 |
contents=[image_description_prompt.format(question=question), image],
|
| 24 |
)
|
| 25 |
|
|
|
|
| 19 |
|
| 20 |
client = genai.Client()
|
| 21 |
response = client.models.generate_content(
|
| 22 |
+
model="gemini-2.5-flash-preview-05-20",
|
| 23 |
contents=[image_description_prompt.format(question=question), image],
|
| 24 |
)
|
| 25 |
|