-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathoptions.go
More file actions
420 lines (345 loc) · 12.7 KB
/
Copy pathoptions.go
File metadata and controls
420 lines (345 loc) · 12.7 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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
package aisdk
import (
"time"
"github.com/grafana/ai-sdk/provider"
)
// TimeoutConfig configures timeout levels for StreamText and GenerateText.
// All fields default to zero (disabled).
type TimeoutConfig struct {
Total time.Duration
Step time.Duration
FirstChunk time.Duration
Chunk time.Duration
}
// StreamOption configures a StreamText call.
type StreamOption interface {
applyStream(*streamConfig)
streamOption()
}
// GenerateOption configures a GenerateText call.
type GenerateOption interface {
applyGenerate(*generateConfig)
generateOption()
}
// Option is an option that applies to both StreamText and GenerateText.
type Option interface {
StreamOption
GenerateOption
}
// ToolOption configures tools for text generation and UI message conversion.
type ToolOption interface {
Option
ConvertOption
}
type baseConfig struct {
messages []UIMessage
modelMessages []provider.Message
system []SystemModelMessage
tools ToolSet
toolChoice *provider.ToolChoice
activeTools []string
activeToolsSet bool
stopWhen []StopCondition
toolApproval toolApprovalConfig
toolApprovalSecret []byte
maxRetries *int
timeout TimeoutConfig
timeoutSet bool
retryInitDelay float64
retryBackoff float64
maxOutputTokens *int
temperature *float64
topP *float64
topK *int
presencePenalty *float64
frequencyPenalty *float64
stopSequences []string
responseFormat *provider.ResponseFormat
seed *int
providerOptions provider.ProviderOptions
headers map[string]string
generateID func() string
onStepFinish func(OnStepFinishState)
onFinish func(OnFinishState)
onError func(error)
onStart func(OnStartState)
onStepStart func(OnStepStartState)
onToolCallStart func(OnToolCallStartState)
onToolCallFinish func(OnToolCallFinishState)
reasoning *provider.ReasoningEffort
prepareStep PrepareStepFunc
runtimeContext any
output Output
}
type streamConfig struct {
baseConfig
onChunk func(OnChunkState)
onAbort func(OnAbortState)
includeRawChunks bool
parseOutputOnNonStop bool
}
type generateConfig struct {
baseConfig
}
func (gc *generateConfig) toStreamConfig() *streamConfig {
bc := gc.baseConfig
bc.timeout.FirstChunk = 0
bc.timeout.Chunk = 0
return &streamConfig{baseConfig: bc}
}
func buildStreamConfig(opts []StreamOption) *streamConfig {
cfg := &streamConfig{parseOutputOnNonStop: true}
for _, opt := range opts {
opt.applyStream(cfg)
}
return cfg
}
func buildGenerateConfig(opts []GenerateOption) *generateConfig {
cfg := &generateConfig{}
for _, opt := range opts {
opt.applyGenerate(cfg)
}
return cfg
}
func generateTimeoutWarnings(timeout TimeoutConfig) []provider.Warning {
var warnings []provider.Warning
if timeout.FirstChunk > 0 {
warnings = append(warnings, provider.Warning{
Type: provider.WarnUnsupported,
Feature: "timeout.firstChunkMs",
Details: "The firstChunkMs timeout is only supported by streaming functions.",
})
}
if timeout.Chunk > 0 {
warnings = append(warnings, provider.Warning{
Type: provider.WarnUnsupported,
Feature: "timeout.chunkMs",
Details: "The chunkMs timeout is only supported by streaming functions.",
})
}
return warnings
}
// sharedOption implements Option (both StreamOption and GenerateOption).
type sharedOption struct {
fn func(*baseConfig)
}
func (o sharedOption) applyStream(c *streamConfig) { o.fn(&c.baseConfig) }
func (o sharedOption) applyGenerate(c *generateConfig) { o.fn(&c.baseConfig) }
func (sharedOption) streamOption() {}
func (sharedOption) generateOption() {}
// streamOnlyOption implements only StreamOption.
type streamOnlyOption struct {
fn func(*streamConfig)
}
func (o streamOnlyOption) applyStream(c *streamConfig) { o.fn(c) }
func (streamOnlyOption) streamOption() {}
// generateOnlyOption implements only GenerateOption.
type generateOnlyOption struct {
fn func(*generateConfig)
}
func (o generateOnlyOption) applyGenerate(c *generateConfig) { o.fn(c) }
func (generateOnlyOption) generateOption() {}
// --- Message options ---
// WithMessages sets the UI messages for the conversation.
func WithMessages(msgs ...UIMessage) Option {
return sharedOption{fn: func(c *baseConfig) { c.messages = msgs }}
}
// WithModelMessages sets provider messages directly, bypassing UI message conversion.
func WithModelMessages(msgs ...provider.Message) Option {
return sharedOption{fn: func(c *baseConfig) { c.modelMessages = msgs }}
}
// WithSystem sets a simple text system prompt.
func WithSystem(text string) Option {
return sharedOption{fn: func(c *baseConfig) {
c.system = []SystemModelMessage{{Content: text}}
}}
}
// WithInstructions sets a simple text instruction prompt.
func WithInstructions(text string) Option {
return WithSystem(text)
}
// WithSystemMessages sets multiple system prompt segments.
func WithSystemMessages(msgs ...SystemModelMessage) Option {
return sharedOption{fn: func(c *baseConfig) { c.system = msgs }}
}
// --- Retry and timeout options ---
// WithMaxRetries sets the maximum number of retry attempts for transient
// errors. Default is 2 (up to 3 total attempts). Set to 0 to disable retry.
func WithMaxRetries(n int) Option {
return sharedOption{fn: func(c *baseConfig) { c.maxRetries = &n }}
}
// WithTimeout sets the timeout configuration for the operation.
func WithTimeout(cfg TimeoutConfig) Option {
return sharedOption{fn: func(c *baseConfig) {
c.timeout = cfg
c.timeoutSet = true
}}
}
// --- Model parameter options ---
// WithTemperature sets the sampling temperature.
func WithTemperature(t float64) Option {
return sharedOption{fn: func(c *baseConfig) { c.temperature = &t }}
}
// WithMaxOutputTokens sets the maximum number of output tokens.
func WithMaxOutputTokens(n int) Option {
return sharedOption{fn: func(c *baseConfig) { c.maxOutputTokens = &n }}
}
// WithTopP sets the top-p (nucleus) sampling parameter.
func WithTopP(p float64) Option {
return sharedOption{fn: func(c *baseConfig) { c.topP = &p }}
}
// WithTopK sets the top-k sampling parameter.
func WithTopK(k int) Option {
return sharedOption{fn: func(c *baseConfig) { c.topK = &k }}
}
// WithSeed sets the random seed for deterministic sampling.
func WithSeed(s int) Option {
return sharedOption{fn: func(c *baseConfig) { c.seed = &s }}
}
// WithPresencePenalty sets the presence penalty.
func WithPresencePenalty(p float64) Option {
return sharedOption{fn: func(c *baseConfig) { c.presencePenalty = &p }}
}
// WithFrequencyPenalty sets the frequency penalty.
func WithFrequencyPenalty(f float64) Option {
return sharedOption{fn: func(c *baseConfig) { c.frequencyPenalty = &f }}
}
// WithStopSequences sets the stop sequences.
func WithStopSequences(seqs ...string) Option {
return sharedOption{fn: func(c *baseConfig) { c.stopSequences = seqs }}
}
// WithGenerateID sets the ID generator used by orchestration-created IDs.
func WithGenerateID(fn func() string) Option {
return sharedOption{fn: func(c *baseConfig) { c.generateID = fn }}
}
// --- Tool options ---
// WithTools sets the available tools.
func WithTools(tools ToolSet) ToolOption {
return toolsOption{tools: tools}
}
type toolsOption struct {
tools ToolSet
}
func (o toolsOption) applyStream(c *streamConfig) { c.tools = o.tools }
func (o toolsOption) applyGenerate(c *generateConfig) { c.tools = o.tools }
func (o toolsOption) applyConvert(c *convertConfig) { c.tools = o.tools }
func (toolsOption) streamOption() {}
func (toolsOption) generateOption() {}
func (toolsOption) convertOption() {}
// WithToolApproval sets call-level tool approval policy. It takes precedence
// over per-tool NeedsApproval configuration. If called more than once, the
// latest generic or per-tool policy replaces the previous one.
func WithToolApproval(policy ToolApprovalPolicyConfig) Option {
return sharedOption{fn: func(c *baseConfig) {
if policy != nil {
policy.applyToolApproval(&c.toolApproval)
}
}}
}
// WithToolApprovalSecret sets the secret used to sign and verify tool approval requests.
func WithToolApprovalSecret(secret string) Option {
return sharedOption{fn: func(c *baseConfig) {
if secret != "" {
c.toolApprovalSecret = []byte(secret)
}
}}
}
// WithToolApprovalSecretBytes sets the byte secret used to sign and verify tool approval requests.
func WithToolApprovalSecretBytes(secret []byte) Option {
return sharedOption{fn: func(c *baseConfig) {
if len(secret) > 0 {
c.toolApprovalSecret = append([]byte(nil), secret...)
}
}}
}
// WithToolChoice sets the tool choice strategy.
func WithToolChoice(tc provider.ToolChoice) Option {
return sharedOption{fn: func(c *baseConfig) { c.toolChoice = &tc }}
}
// WithActiveTools filters which tools are active for a call.
func WithActiveTools(names ...string) Option {
return sharedOption{fn: func(c *baseConfig) {
c.activeTools = names
c.activeToolsSet = true
}}
}
// WithStopWhen sets stop conditions for the multi-step loop.
func WithStopWhen(conditions ...StopCondition) Option {
return sharedOption{fn: func(c *baseConfig) { c.stopWhen = conditions }}
}
// --- Provider integration options ---
// WithProviderOptions sets provider-specific options from typed values.
// Each value's ProviderKey() determines its map key; last value wins per key.
func WithProviderOptions(opts ...provider.ProviderOption) Option {
return sharedOption{fn: func(c *baseConfig) {
c.providerOptions = provider.BuildProviderOptions(opts...)
}}
}
// WithHeaders sets additional request headers.
func WithHeaders(headers map[string]string) Option {
return sharedOption{fn: func(c *baseConfig) { c.headers = headers }}
}
// WithResponseFormat sets the response format.
func WithResponseFormat(f provider.ResponseFormat) Option {
return sharedOption{fn: func(c *baseConfig) { c.responseFormat = &f }}
}
// --- Shared callback options ---
// OnStart sets a callback invoked when the stream starts.
func OnStart(fn func(OnStartState)) Option {
return sharedOption{fn: func(c *baseConfig) { c.onStart = fn }}
}
// OnStepStart sets a callback invoked at the start of each step.
func OnStepStart(fn func(OnStepStartState)) Option {
return sharedOption{fn: func(c *baseConfig) { c.onStepStart = fn }}
}
// OnStepFinish sets a callback invoked when a step completes.
func OnStepFinish(fn func(OnStepFinishState)) Option {
return sharedOption{fn: func(c *baseConfig) { c.onStepFinish = fn }}
}
// OnStepEnd sets a callback invoked when a step completes.
func OnStepEnd(fn func(OnStepFinishState)) Option {
return OnStepFinish(fn)
}
// OnFinish sets a callback invoked once after all steps complete successfully.
func OnFinish(fn func(OnFinishState)) Option {
return sharedOption{fn: func(c *baseConfig) { c.onFinish = fn }}
}
// OnError sets a callback invoked on errors.
func OnError(fn func(error)) Option {
return sharedOption{fn: func(c *baseConfig) { c.onError = fn }}
}
// OnToolCallStart sets a callback invoked before a tool is executed.
func OnToolCallStart(fn func(OnToolCallStartState)) Option {
return sharedOption{fn: func(c *baseConfig) { c.onToolCallStart = fn }}
}
// OnToolCallFinish sets a callback invoked after a tool finishes execution.
func OnToolCallFinish(fn func(OnToolCallFinishState)) Option {
return sharedOption{fn: func(c *baseConfig) { c.onToolCallFinish = fn }}
}
// --- Stream-only options ---
// OnChunk sets a callback invoked for each streaming chunk. Only available for StreamText.
func OnChunk(fn func(OnChunkState)) StreamOption {
return streamOnlyOption{fn: func(c *streamConfig) { c.onChunk = fn }}
}
// WithIncludeRawChunks enables raw provider chunks in the stream. Only available for StreamText.
func WithIncludeRawChunks() StreamOption {
return streamOnlyOption{fn: func(c *streamConfig) { c.includeRawChunks = true }}
}
// OnAbort sets a callback invoked when the stream is cancelled via context. Only available for StreamText.
func OnAbort(fn func(OnAbortState)) StreamOption {
return streamOnlyOption{fn: func(c *streamConfig) { c.onAbort = fn }}
}
// --- Model behavior options ---
// WithReasoning sets the reasoning effort level for the model.
func WithReasoning(level provider.ReasoningEffort) Option {
return sharedOption{fn: func(c *baseConfig) { c.reasoning = &level }}
}
// --- Advanced options ---
// WithPrepareStep sets a per-step preparation callback.
func WithPrepareStep(fn PrepareStepFunc) Option {
return sharedOption{fn: func(c *baseConfig) { c.prepareStep = fn }}
}
// WithOutput sets structured output processing.
func WithOutput(out Output) Option {
return sharedOption{fn: func(c *baseConfig) { c.output = out }}
}