mirror of
https://github.com/router-for-me/CLIProxyAPI.git
synced 2026-09-06 16:15:50 +08:00
- Introduced API handlers and executor logic for Google Interactions - Added request and response transformations for OpenAI and Claude Interactions. - Integrated Gemini API with Interactions support. - Updated tests to validate Interactions request parsing and error handling. - Refactored translator logic for Interactions data flows.
13 lines
663 B
Go
13 lines
663 B
Go
package helps
|
|
|
|
import (
|
|
_ "github.com/router-for-me/CLIProxyAPI/v7/internal/thinking/provider/antigravity"
|
|
_ "github.com/router-for-me/CLIProxyAPI/v7/internal/thinking/provider/claude"
|
|
_ "github.com/router-for-me/CLIProxyAPI/v7/internal/thinking/provider/codex"
|
|
_ "github.com/router-for-me/CLIProxyAPI/v7/internal/thinking/provider/gemini"
|
|
_ "github.com/router-for-me/CLIProxyAPI/v7/internal/thinking/provider/interactions"
|
|
_ "github.com/router-for-me/CLIProxyAPI/v7/internal/thinking/provider/kimi"
|
|
_ "github.com/router-for-me/CLIProxyAPI/v7/internal/thinking/provider/openai"
|
|
_ "github.com/router-for-me/CLIProxyAPI/v7/internal/thinking/provider/xai"
|
|
)
|