-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvertex.go
More file actions
228 lines (198 loc) · 5.35 KB
/
vertex.go
File metadata and controls
228 lines (198 loc) · 5.35 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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
package iteragent
import (
"bytes"
"context"
"encoding/json"
"fmt"
"io"
"net/http"
"os"
"strings"
"time"
)
type VertexConfig struct {
ProjectID string
Location string
Model string
Credentials string
MaxTokens int
Temperature float32
}
type VertexProvider struct {
config VertexConfig
client *http.Client
}
func NewVertex(config VertexConfig) *VertexProvider {
return &VertexProvider{
config: config,
client: &http.Client{Timeout: 120 * time.Second},
}
}
func (p *VertexProvider) Name() string {
return fmt.Sprintf("vertex(%s)", p.config.Model)
}
func (p *VertexProvider) getAccessToken(ctx context.Context) (string, error) {
tokenSrc := os.Getenv("GOOGLE_ACCESS_TOKEN")
if tokenSrc != "" {
return tokenSrc, nil
}
credFile := p.config.Credentials
if credFile == "" {
credFile = os.Getenv("GOOGLE_APPLICATION_CREDENTIALS")
}
if credFile != "" {
return "", fmt.Errorf("service account credentials file found but JWT signing is not implemented; use gcloud auth or set GOOGLE_ACCESS_TOKEN instead")
}
return "", fmt.Errorf("no credentials found for Vertex AI")
}
func (p *VertexProvider) Complete(ctx context.Context, messages []Message, opts ...CompletionOptions) (string, error) {
location := p.config.Location
if location == "" {
location = "us-central1"
}
url := fmt.Sprintf("https://%s-aiplatform.googleapis.com/v1/projects/%s/locations/%s/publishers/google/models/%s:generateContent",
location, p.config.ProjectID, location, p.config.Model)
token, err := p.getAccessToken(ctx)
if err != nil {
return "", err
}
var system string
var contents []map[string]interface{}
for _, m := range messages {
if m.Role == "system" {
system = m.Content
} else {
role := "user"
if m.Role == "assistant" {
role = "model"
}
contents = append(contents, map[string]interface{}{
"role": role,
"parts": []map[string]string{
{"text": m.Content},
},
})
}
}
body := map[string]interface{}{
"contents": contents,
}
if system != "" {
body["systemInstruction"] = map[string]interface{}{
"parts": []map[string]string{
{"text": system},
},
}
}
if p.config.MaxTokens > 0 {
body["maxOutputTokens"] = 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
}
req.Header.Set("Authorization", "Bearer "+token)
req.Header.Set("Content-Type", "application/json")
resp, err := p.client.Do(req)
if err != nil {
return "", err
}
defer resp.Body.Close()
respBody, err := io.ReadAll(resp.Body)
if err != nil {
return "", fmt.Errorf("read response body: %w", err)
}
if resp.StatusCode != http.StatusOK {
return "", fmt.Errorf("Vertex AI error (%d): %s", resp.StatusCode, string(respBody))
}
var response struct {
Candidates []struct {
Content struct {
Parts []struct {
Text string `json:"text"`
} `json:"parts"`
} `json:"content"`
} `json:"candidates"`
}
if err := json.Unmarshal(respBody, &response); err != nil {
return "", fmt.Errorf("parse response: %w", err)
}
if len(response.Candidates) == 0 {
return "", fmt.Errorf("no response candidates")
}
texts := []string{}
for _, part := range response.Candidates[0].Content.Parts {
texts = append(texts, part.Text)
}
return strings.Join(texts, ""), nil
}
// CompleteStream implements Provider for Vertex AI using the streamGenerateContent SSE endpoint.
func (p *VertexProvider) CompleteStream(ctx context.Context, messages []Message, opt CompletionOptions, onToken func(string)) (string, error) {
location := p.config.Location
if location == "" {
location = "us-central1"
}
streamURL := fmt.Sprintf("https://%s-aiplatform.googleapis.com/v1/projects/%s/locations/%s/publishers/google/models/%s:streamGenerateContent",
location, p.config.ProjectID, location, p.config.Model)
accessToken, err := p.getAccessToken(ctx)
if err != nil {
return "", err
}
var system string
var contents []map[string]interface{}
for _, m := range messages {
if m.Role == "system" {
system = m.Content
} else {
role := "user"
if m.Role == "assistant" {
role = "model"
}
contents = append(contents, map[string]interface{}{
"role": role,
"parts": []map[string]string{{"text": m.Content}},
})
}
}
body := map[string]interface{}{"contents": contents}
if system != "" {
body["systemInstruction"] = map[string]interface{}{
"parts": []map[string]string{{"text": system}},
}
}
if opt.MaxTokens > 0 {
body["maxOutputTokens"] = opt.MaxTokens
}
if opt.Temperature > 0 {
body["temperature"] = opt.Temperature
}
jsonBody, err := json.Marshal(body)
if err != nil {
return "", fmt.Errorf("marshal request: %w", err)
}
var full strings.Builder
sseClient := NewSSEClient()
err = sseClient.Stream(ctx, streamURL, map[string]string{"Authorization": "Bearer " + accessToken}, jsonBody, func(e SSEEvent) {
if tok, ok := ParseGeminiSSE(e.Data); ok && tok != "" {
full.WriteString(tok)
if onToken != nil {
onToken(tok)
}
}
})
if err != nil {
return "", fmt.Errorf("vertex stream: %w", err)
}
result := full.String()
if result == "" {
return "", fmt.Errorf("empty streaming response from vertex")
}
return result, nil
}