mirror of
https://github.com/router-for-me/CLIProxyAPIPlus.git
synced 2026-03-21 16:40:22 +00:00
- Add --kiro-aws-login flag for AWS Builder ID device code flow - Add DoKiroAWSLogin function for AWS SSO OIDC authentication - Complete Kiro integration with AWS, Google OAuth, and social auth - Add kiro executor, translator, and SDK components - Update browser support for Kiro authentication flows
20 lines
449 B
Go
20 lines
449 B
Go
package claude
|
|
|
|
import (
|
|
. "github.com/router-for-me/CLIProxyAPI/v6/internal/constant"
|
|
"github.com/router-for-me/CLIProxyAPI/v6/internal/interfaces"
|
|
"github.com/router-for-me/CLIProxyAPI/v6/internal/translator/translator"
|
|
)
|
|
|
|
func init() {
|
|
translator.Register(
|
|
Claude,
|
|
Kiro,
|
|
ConvertClaudeRequestToKiro,
|
|
interfaces.TranslateResponse{
|
|
Stream: ConvertKiroResponseToClaude,
|
|
NonStream: ConvertKiroResponseToClaudeNonStream,
|
|
},
|
|
)
|
|
}
|