Update app.py to switch to free tier model_id
Browse files
app.py
CHANGED
|
@@ -30,7 +30,7 @@ class BasicAgent:
|
|
| 30 |
model = HfApiModel(
|
| 31 |
max_tokens=2096,
|
| 32 |
temperature=0.0,
|
| 33 |
-
model_id="
|
| 34 |
custom_role_conversions=None,
|
| 35 |
)
|
| 36 |
|
|
|
|
| 30 |
model = HfApiModel(
|
| 31 |
max_tokens=2096,
|
| 32 |
temperature=0.0,
|
| 33 |
+
model_id="google/gemma-2b-it",# it is possible that this model may be overloaded
|
| 34 |
custom_role_conversions=None,
|
| 35 |
)
|
| 36 |
|