KimiExecutor is a stateless executor for Kimi API using OpenAI-compatible chat completions.
| 28 | |
| 29 | // KimiExecutor is a stateless executor for Kimi API using OpenAI-compatible chat completions. |
| 30 | type KimiExecutor struct { |
| 31 | ClaudeExecutor |
| 32 | cfg *config.Config |
| 33 | } |
| 34 | |
| 35 | // NewKimiExecutor creates a new Kimi executor. |
| 36 | func NewKimiExecutor(cfg *config.Config) *KimiExecutor { return &KimiExecutor{cfg: cfg} } |
nothing calls this directly
no outgoing calls
no test coverage detected