mirror of
https://github.com/songquanpeng/one-api.git
synced 2025-09-30 07:06:38 +08:00
12 lines
177 B
Go
12 lines
177 B
Go
package bedrock
|
|
|
|
const awsService = "bedrock"
|
|
|
|
type BedrockError struct {
|
|
Message string `json:"message"`
|
|
}
|
|
|
|
type BedrockResponseStream struct {
|
|
Bytes string `json:"bytes"`
|
|
}
|