mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-25 03:45:46 -06:00
fa77fe10d5
* chore(models): migrate active GPT-5.5 references * test(workboard): expect GPT-5.6 Sol default * chore: keep release notes in PR body * test(models): align picker fixtures with Sol default * test: update PDF default model expectation * test(qa): migrate thinking smoke to Luna * test(gateway): align mock catalog with Sol default * ci: retrigger exact-head PR checks * test(gateway): document default catalog invariant
7 lines
333 B
TypeScript
7 lines
333 B
TypeScript
// Defaults for agent metadata when upstream does not supply them.
|
|
// Keep this aligned with the product-level latest-model baseline.
|
|
export const DEFAULT_PROVIDER = "openai";
|
|
export const DEFAULT_MODEL = "gpt-5.6-sol";
|
|
// Conservative fallback used when model metadata is unavailable.
|
|
export const DEFAULT_CONTEXT_TOKENS = 200_000;
|