Skip to content

Commit

Permalink
set perplexity as a default model provider
Browse files Browse the repository at this point in the history
  • Loading branch information
CuriousDima authored Sep 15, 2024
1 parent 82979a9 commit d6ed60d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions telegram-bot/db_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ class Account(SQLModel, table=True):
id: int | None = Field(default=None, primary_key=True)
user_id: str = Field(index=True, sa_type=BigInteger) # Telegram user ID
username: str | None
provider: Provider = Field(default=Provider.GROQ)
model: Model = Field(default=Model.LLAMA3_70B)
provider: Provider = Field(default=Provider.PERPLEXITY)
model: Model = Field(default=Model.LLAMA3_70B_INSTRUCT)
tokens_balance: int = Field(default=_NUM_TOKENS_DEFAULT)
# Whether the user is a friend of the bot owner.
# This is used to give the user an unlimited token balance.
Expand Down

0 comments on commit d6ed60d

Please sign in to comment.