fix: set max_completion_tokens to 100 in llm validation (#59)

This commit is contained in:
Nicolò Boschi 2025-12-19 09:32:43 +01:00 committed by GitHub
parent 6d820ef91b
commit b94b5cf26e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -112,7 +112,7 @@ class LLMProvider:
)
await self.call(
messages=[{"role": "user", "content": "Say 'ok'"}],
max_completion_tokens=10,
max_completion_tokens=100,
max_retries=2,
initial_backoff=0.5,
max_backoff=2.0,