Add set max_tokens attribute in OpenAIClient initialization (#330)

This commit is contained in:
Pavlo Paliychuk 2025-04-07 12:33:15 -04:00 committed by GitHub
parent 87fbf31a78
commit 807a402ba4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -87,6 +87,8 @@ class OpenAIClient(LLMClient):
else:
self.client = client
self.max_tokens = max_tokens
async def _generate_response(
self,
messages: list[Message],