Compare commits

...
1 Commits
Author SHA1 Message Date
Nicolò Boschi 2e44208ee5 fix: set max_completion_tokens to 100 in llm validation 2025-12-19 09:23:56 +01:00
@@ -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,