one-api/providers/bedrock/type.go
Buer b81808e839
feat: support amazon bedrock anthropic (#114)
* 🚧 WIP: bedrock

*  feat: support amazon bedrock anthropic
2024-03-18 16:00:35 +08:00

12 lines
177 B
Go

package bedrock
const awsService = "bedrock"
type BedrockError struct {
Message string `json:"message"`
}
type BedrockResponseStream struct {
Bytes string `json:"bytes"`
}