Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 2026-07-17

### Changes
- Fixed startup failing with `AI connection failed: Invalid 'max_output_tokens'` on models that reject a one-token response. The check that verifies your AI credentials at startup no longer caps the reply length, so it works with every provider regardless of their minimum.

## 2026-07-10

### Changes
Expand Down
1 change: 0 additions & 1 deletion src/ai/provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,6 @@ export class Provider {
await generateText({
model: this.config.model,
prompt: 'hi',
maxOutputTokens: 1,
});
} catch (error: any) {
throw new AiError(`AI connection failed: ${error.message}`);
Expand Down
Loading