Skip to content

Commit

Permalink
fix(assistant): summary now can output 2000 tokens
Browse files Browse the repository at this point in the history
  • Loading branch information
StanGirard committed Apr 17, 2024
1 parent 3400b86 commit 4412ecd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/modules/assistant/ito/summary.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ async def process_assistant(self):

data = loader.load()

llm = ChatLiteLLM(model="gpt-3.5-turbo")
llm = ChatLiteLLM(model="gpt-3.5-turbo", max_tokens=2000)

map_template = """The following is one document to summarize that has been split into multiple sections:
{docs}
Expand Down

0 comments on commit 4412ecd

Please sign in to comment.