-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbedrock.go
More file actions
202 lines (166 loc) · 4.9 KB
/
bedrock.go
File metadata and controls
202 lines (166 loc) · 4.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
package iteragent
import (
"bytes"
"context"
"crypto/hmac"
"crypto/sha256"
"encoding/json"
"fmt"
"io"
"net/http"
"strings"
"time"
)
type BedrockConfig struct {
Region string
Model string
AccessKey string
SecretKey string
MaxTokens int
Temperature float32
}
type BedrockProvider struct {
config BedrockConfig
client *http.Client
}
func NewBedrock(config BedrockConfig) *BedrockProvider {
return &BedrockProvider{
config: config,
client: &http.Client{Timeout: 120 * time.Second},
}
}
func (p *BedrockProvider) Name() string {
return "bedrock"
}
// TODO: Add ThinkingLevel support for Bedrock when provider supports it.
func (p *BedrockProvider) Complete(ctx context.Context, messages []Message, opts ...CompletionOptions) (string, error) {
url := fmt.Sprintf("https://bedrock-runtime.%s.amazonaws.com/model/%s/converse",
p.config.Region, p.config.Model)
systemPrompts := []map[string]string{}
var convMessages []map[string]interface{}
for _, msg := range messages {
if msg.Role == "system" {
systemPrompts = append(systemPrompts, map[string]string{"text": msg.Content})
} else {
convMessages = append(convMessages, map[string]interface{}{
"role": msg.Role,
"content": []map[string]string{
{"text": msg.Content},
},
})
}
}
body := map[string]interface{}{
"messages": convMessages,
}
if len(systemPrompts) > 0 {
body["system"] = systemPrompts
}
if p.config.MaxTokens > 0 {
body["maxTokens"] = p.config.MaxTokens
}
if p.config.Temperature > 0 {
body["temperature"] = p.config.Temperature
}
jsonBody, err := json.Marshal(body)
if err != nil {
return "", fmt.Errorf("marshal request: %w", err)
}
req, err := http.NewRequestWithContext(ctx, "POST", url, bytes.NewReader(jsonBody))
if err != nil {
return "", err
}
p.signRequest(req, string(jsonBody))
req.Header.Set("Content-Type", "application/json")
req.Header.Set("Accept", "application/json")
resp, err := p.client.Do(req)
if err != nil {
return "", err
}
defer resp.Body.Close()
respBody, err := io.ReadAll(io.LimitReader(resp.Body, 10*1024*1024))
if err != nil {
return "", fmt.Errorf("read response: %w", err)
}
if resp.StatusCode != http.StatusOK {
return "", fmt.Errorf("Bedrock error (%d): %s", resp.StatusCode, string(respBody))
}
var response struct {
Output struct {
Message struct {
Content []struct {
Text string `json:"text"`
} `json:"content"`
} `json:"message"`
} `json:"output"`
}
if err := json.Unmarshal(respBody, &response); err != nil {
return "", fmt.Errorf("parse response: %w", err)
}
if len(response.Output.Message.Content) == 0 {
return "", fmt.Errorf("no response content")
}
return response.Output.Message.Content[0].Text, nil
}
// CompleteStream implements Provider for Bedrock. Bedrock's streaming API uses
// HTTP/2 binary event framing which requires the AWS SDK to decode correctly.
// As a pragmatic fallback, this calls Complete and delivers the full response as
// a single token so the agent loop still benefits from retry logic.
func (p *BedrockProvider) CompleteStream(ctx context.Context, messages []Message, opt CompletionOptions, onToken func(string)) (string, error) {
result, err := p.Complete(ctx, messages, opt)
if err != nil {
return "", err
}
if onToken != nil {
onToken(result)
}
return result, nil
}
func (p *BedrockProvider) signRequest(req *http.Request, payload string) {
now := time.Now().UTC()
date := now.Format("20060102T150405Z")
region := p.config.Region
service := "bedrock"
req.Header.Set("X-Amz-Date", date)
host := req.Host
if host == "" {
host = req.URL.Hostname()
}
hashedPayload := fmt.Sprintf("%x", sha256.Sum256([]byte(payload)))
headers := []string{
"content-type:application/json",
fmt.Sprintf("host:%s", host),
fmt.Sprintf("x-amz-date:%s", date),
}
signedHeaders := "content-type;host;x-amz-date"
canonicalRequest := strings.Join([]string{
"POST",
"/model/" + p.config.Model + "/converse",
"",
strings.Join(headers, "\n"),
signedHeaders,
hashedPayload,
}, "\n")
hashedCanonical := fmt.Sprintf("%x", sha256.Sum256([]byte(canonicalRequest)))
algorithm := "AWS4-HMAC-SHA256"
credentialScope := fmt.Sprintf("%s/%s/%s/aws4_request", date[:8], region, service)
stringToSign := strings.Join([]string{
algorithm,
date,
credentialScope,
hashedCanonical,
}, "\n")
kDate := hmacSHA256([]byte("AWS4"+p.config.SecretKey), date[:8])
kRegion := hmacSHA256(kDate, region)
kService := hmacSHA256(kRegion, service)
kSigning := hmacSHA256(kService, "aws4_request")
signature := fmt.Sprintf("%x", hmacSHA256(kSigning, stringToSign))
authHeader := fmt.Sprintf("%s Credential=%s/%s, SignedHeaders=%s, Signature=%s",
algorithm, p.config.AccessKey, credentialScope, signedHeaders, signature)
req.Header.Set("Authorization", authHeader)
}
func hmacSHA256(key []byte, data string) []byte {
h := hmac.New(sha256.New, key)
h.Write([]byte(data))
return h.Sum(nil)
}