2026-08-21 18:30:13 +08:00
|
|
|
package domain
|
|
|
|
|
|
|
|
|
|
// ReasoningEffortMapping rewrites one explicit OpenAI/Codex reasoning effort
|
|
|
|
|
// value to another before the group ceiling is applied.
|
|
|
|
|
type ReasoningEffortMapping struct {
|
|
|
|
|
From string `json:"from"`
|
|
|
|
|
To string `json:"to"`
|
|
|
|
|
}
|