Files
openclaw/docs/experiments/proposals/model-config.md

33 lines
1.1 KiB
Markdown
Raw Normal View History

2026-01-05 19:25:04 +00:00
---
2026-01-08 23:06:56 +01:00
summary: "Exploration: model config, auth profiles, and fallback behavior"
2026-01-05 19:25:04 +00:00
read_when:
2026-01-08 23:06:56 +01:00
- Exploring future model selection + auth profile ideas
2026-01-05 19:25:04 +00:00
---
2026-01-08 23:06:56 +01:00
# Model Config (Exploration)
2026-01-05 19:25:04 +00:00
2026-01-08 23:06:56 +01:00
This document captures **ideas** for future model configuration. It is not a
shipping spec. For current behavior, see:
- [Models](/concepts/models)
- [Model failover](/concepts/model-failover)
- [OAuth + profiles](/concepts/oauth)
2026-01-05 19:25:04 +00:00
2026-01-08 23:06:56 +01:00
## Motivation
2026-01-05 19:25:04 +00:00
2026-01-08 23:06:56 +01:00
Operators want:
- Multiple auth profiles per provider (personal vs work).
- Simple `/model` selection with predictable fallbacks.
- Clear separation between text models and image-capable models.
2026-01-05 19:25:04 +00:00
2026-01-08 23:06:56 +01:00
## Possible direction (high level)
2026-01-05 19:25:04 +00:00
2026-01-08 23:06:56 +01:00
- Keep model selection simple: `provider/model` with optional aliases.
- Let providers have multiple auth profiles, with an explicit order.
- Use a global fallback list so all sessions fail over consistently.
- Only override image routing when explicitly configured.
2026-01-05 19:25:04 +00:00
2026-01-08 23:06:56 +01:00
## Open questions
2026-01-05 19:25:04 +00:00
2026-01-08 23:06:56 +01:00
- Should profile rotation be per-provider or per-model?
- How should the UI surface profile selection for a session?
- What is the safest migration path from legacy config keys?