config: add per-tier auth_mode

This commit is contained in:
William Valentin
2026-02-15 10:23:03 -08:00
parent f2cdd1abd2
commit 9755487793
4 changed files with 37 additions and 0 deletions
+2
View File
@@ -165,6 +165,8 @@ models:
local: { provider: ollama, model: qwen2.5:14b }
```
Each tier can optionally specify `auth_mode` (`auto` | `api_key` | `oauth`) to control whether Flynn uses API keys vs OAuth/token auth for that provider. `use_oauth: true` remains supported as a compatibility alias for `auth_mode: oauth`.
### Native Audio Support
Voice messages from channels can be handled in two ways:
+2
View File
@@ -39,6 +39,8 @@ models:
default:
provider: anthropic
model: claude-sonnet-4-20250514
# auth_mode: auto # auto | api_key | oauth (provider-specific)
# use_oauth: false # compat alias for auth_mode: oauth
# supports_audio: false # Override native audio detection per tier
local:
provider: ollama
+31
View File
@@ -140,6 +140,37 @@ describe('configSchema — per-tier fallback', () => {
});
});
describe('configSchema — models auth_mode', () => {
const minimalConfig = {
telegram: { bot_token: 'test', allowed_chat_ids: [1] },
models: { default: { provider: 'anthropic', model: 'claude-3' } },
};
it('accepts auth_mode values per tier', () => {
const result = configSchema.parse({
...minimalConfig,
models: {
default: { provider: 'openai', model: 'gpt-4o', auth_mode: 'api_key' },
fast: { provider: 'openai', model: 'gpt-4o-mini', auth_mode: 'oauth' },
},
});
expect(result.models.default.auth_mode).toBe('api_key');
expect(result.models.fast?.auth_mode).toBe('oauth');
});
it('rejects invalid auth_mode values', () => {
expect(() => {
configSchema.parse({
...minimalConfig,
models: {
default: { provider: 'openai', model: 'gpt-4o', auth_mode: 'bogus' },
},
});
}).toThrow(/auth_mode/i);
});
});
describe('configSchema — skills watcher', () => {
const minimalConfig = {
telegram: { bot_token: 'test', allowed_chat_ids: [1] },
+2
View File
@@ -49,6 +49,8 @@ const modelConfigBaseSchema = z.object({
endpoint: z.string().optional(),
api_key: z.string().optional(),
auth_token: z.string().optional(),
/** Credential selection strategy for this tier (provider-specific). */
auth_mode: z.enum(['auto', 'api_key', 'oauth']).optional(),
/** Use OAuth credential flow (provider-specific). */
use_oauth: z.boolean().optional(),
for: z.array(z.string()).optional(),