Skip to content

Commit

Permalink
Subject : updating max length of response
Browse files Browse the repository at this point in the history
  • Loading branch information
paraskuk committed Jul 23, 2024
1 parent a2ae508 commit 66184e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions models/query_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@

class QueryModel(BaseModel):
"""
Data class Model for query input sets max length of user_input to 2000
Data class Model for query input sets max length of user_input
"""
user_input: str = Field(min_length=1, max_length=2000)
user_input: str = Field(min_length=1, max_length=10000)
model: str = "gpt-4o" # Default model is gpt-4


Expand Down

0 comments on commit 66184e0

Please sign in to comment.