Skip to content

Commit fb62ca3

Browse files
authored
set llama3-70b as a default model
1 parent 0b61f92 commit fb62ca3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎telegram-bot/db_client.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class Account(SQLModel, table=True):
1515
user_id: str = Field(index=True, sa_type=BigInteger) # Telegram user ID
1616
username: str | None
1717
provider: Provider = Field(default=Provider.GROQ)
18-
model: Model = Field(default=Model.GEMMA)
18+
model: Model = Field(default=Model.LLAMA3_70B)
1919
tokens_balance: int = Field(default=_NUM_TOKENS_DEFAULT)
2020
# Whether the user is a friend of the bot owner.
2121
# This is used to give the user an unlimited token balance.

0 commit comments

Comments
 (0)