Skip to content

Commit

Permalink
Change var name and increase default
Browse files Browse the repository at this point in the history
  • Loading branch information
NirantK authored Aug 2, 2023
1 parent ea72cdf commit 470a83e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion agentai/conversation.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class Message(BaseModel):


class Conversation:
def __init__(self, history: List[Message] = [], id: Optional[str] = None, max_tokens: int = 100):
def __init__(self, history: List[Message] = [], id: Optional[str] = None, max_history_tokens: int = 200):
self.history: List[Message] = history
self.role_to_color = {
"system": "red",
Expand Down

0 comments on commit 470a83e

Please sign in to comment.