Skip to content

Commit

Permalink
update token limits
Browse files Browse the repository at this point in the history
  • Loading branch information
Kav-K committed Apr 18, 2023
1 parent 4d6471f commit e4426bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cogs/search_service_cog.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ async def paginate_chat_embed(self, response_text):
"""Given a response text make embed pages and return a list of the pages."""

response_text = [
response_text[i : i + 2000] for i in range(0, len(response_text), 2000)
response_text[i : i + 3500] for i in range(0, len(response_text), 7000)
]
pages = []
first = False
Expand Down

0 comments on commit e4426bc

Please sign in to comment.