9
9
} from './ai/wrap.js' ;
10
10
import {
11
11
AxAIAnthropic ,
12
+ axAIAnthropicDefaultConfig ,
12
13
type AxAIAnthropicArgs
13
14
} from './ai/anthropic/api.js' ;
14
15
import {
@@ -31,11 +32,17 @@ import {
31
32
} from './ai/anthropic/types.js' ;
32
33
import {
33
34
AxAIAzureOpenAI ,
35
+ axAIAzureOpenAIBestConfig ,
36
+ axAIAzureOpenAICreativeConfig ,
37
+ axAIAzureOpenAIDefaultConfig ,
38
+ axAIAzureOpenAIFastConfig ,
34
39
type AxAIAzureOpenAIArgs ,
35
40
type AxAIAzureOpenAIConfig
36
41
} from './ai/azure-openai/api.js' ;
37
42
import {
38
43
AxAICohere ,
44
+ axAICohereCreativeConfig ,
45
+ axAICohereDefaultConfig ,
39
46
type AxAICohereArgs
40
47
} from './ai/cohere/api.js' ;
41
48
import {
@@ -52,10 +59,14 @@ import {
52
59
} from './ai/cohere/types.js' ;
53
60
import {
54
61
AxAIDeepSeek ,
62
+ axAIDeepSeekCodeConfig ,
63
+ axAIDeepSeekDefaultConfig ,
55
64
type AxAIDeepSeekArgs
56
65
} from './ai/deepseek/api.js' ;
57
66
import {
58
67
AxAIGoogleGemini ,
68
+ axAIGoogleGeminiDefaultConfig ,
69
+ axAIGoogleGeminiDefaultCreativeConfig ,
59
70
type AxAIGoogleGeminiArgs ,
60
71
type AxAIGoogleGeminiOptionsTools
61
72
} from './ai/google-gemini/api.js' ;
@@ -86,6 +97,8 @@ import {
86
97
} from './ai/groq/api.js' ;
87
98
import {
88
99
AxAIHuggingFace ,
100
+ axAIHuggingFaceCreativeConfig ,
101
+ axAIHuggingFaceDefaultConfig ,
89
102
type AxAIHuggingFaceArgs
90
103
} from './ai/huggingface/api.js' ;
91
104
import {
@@ -96,6 +109,8 @@ import {
96
109
} from './ai/huggingface/types.js' ;
97
110
import {
98
111
AxAIMistral ,
112
+ axAIMistralBestConfig ,
113
+ axAIMistralDefaultConfig ,
99
114
type AxAIMistralArgs
100
115
} from './ai/mistral/api.js' ;
101
116
import {
@@ -104,12 +119,18 @@ import {
104
119
} from './ai/mistral/types.js' ;
105
120
import {
106
121
AxAIOllama ,
122
+ axAIOllamaDefaultConfig ,
123
+ axAIOllamaDefaultCreativeConfig ,
107
124
type AxAIOllamaAIConfig ,
108
125
type AxAIOllamaArgs
109
126
} from './ai/ollama/api.js' ;
110
127
import {
111
128
AxAIOpenAI ,
112
129
AxAIOpenAIBase ,
130
+ axAIOpenAIBestConfig ,
131
+ axAIOpenAICreativeConfig ,
132
+ axAIOpenAIDefaultConfig ,
133
+ axAIOpenAIFastConfig ,
113
134
type AxAIOpenAIArgs ,
114
135
type AxAIOpenAIBaseArgs
115
136
} from './ai/openai/api.js' ;
@@ -128,6 +149,10 @@ import {
128
149
} from './ai/openai/types.js' ;
129
150
import {
130
151
AxAIReka ,
152
+ axAIRekaBestConfig ,
153
+ axAIRekaCreativeConfig ,
154
+ axAIRekaDefaultConfig ,
155
+ axAIRekaFastConfig ,
131
156
type AxAIRekaArgs
132
157
} from './ai/reka/api.js' ;
133
158
import {
@@ -151,6 +176,7 @@ import {
151
176
} from './util/apicall.js' ;
152
177
import {
153
178
AxAITogether ,
179
+ axAITogetherDefaultConfig ,
154
180
type AxAITogetherArgs
155
181
} from './ai/together/api.js' ;
156
182
import {
@@ -175,6 +201,8 @@ import {
175
201
} from './ai/balance.js' ;
176
202
import {
177
203
AxBaseAI ,
204
+ axBaseAIDefaultConfig ,
205
+ axBaseAIDefaultCreativeConfig ,
178
206
type AxAIFeatures ,
179
207
type AxBaseAIArgs
180
208
} from './ai/base.js' ;
@@ -252,7 +280,9 @@ import {
252
280
} from './funcs/code.js' ;
253
281
import {
254
282
AxLLMRequestTypeValues ,
255
- AxSpanKindValues
283
+ AxSpanKindValues ,
284
+ axSpanAttributes ,
285
+ axSpanEvents
256
286
} from './trace/trace.js' ;
257
287
import {
258
288
AxMockAIService ,
@@ -342,13 +372,25 @@ import {AxChainOfThought} from './prompts/cot.js';
342
372
import { AxDefaultQueryRewriter } from './docs/rewriter.js' ;
343
373
import { AxDefaultResultReranker } from './docs/reranker.js' ;
344
374
import { AxEmbeddingAdapter } from './funcs/embed.js' ;
375
+ import { AxEvalUtil } from './dsp/eval.js' ;
345
376
import { AxInstanceRegistry } from './dsp/registry.js' ;
346
377
import { AxMCPClient } from './mcp/client.js' ;
347
378
import { AxMCPHTTPTransport } from './mcp/httpTransport.js' ;
348
379
import { AxMCPStdioTransport } from './mcp/stdioTransport.js' ;
349
380
import { AxMemory } from './mem/memory.js' ;
350
381
import { AxMultiServiceRouter } from './ai/multiservice.js' ;
351
382
import { AxRAG } from './prompts/rag.js' ;
383
+ import { AxStringUtil } from './dsp/strutil.js' ;
384
+ import { axModelInfoAnthropic } from './ai/anthropic/info.js' ;
385
+ import { axModelInfoCohere } from './ai/cohere/info.js' ;
386
+ import { axModelInfoDeepSeek } from './ai/deepseek/info.js' ;
387
+ import { axModelInfoGoogleGemini } from './ai/google-gemini/info.js' ;
388
+ import { axModelInfoGroq } from './ai/groq/info.js' ;
389
+ import { axModelInfoHuggingFace } from './ai/huggingface/info.js' ;
390
+ import { axModelInfoMistral } from './ai/mistral/info.js' ;
391
+ import { axModelInfoOpenAI } from './ai/openai/info.js' ;
392
+ import { axModelInfoReka } from './ai/reka/info.js' ;
393
+ import { axModelInfoTogether } from './ai/together/info.js' ;
352
394
import { type AxAIMemory } from './mem/types.js' ;
353
395
import { type AxMCPTransport } from './mcp/transport.js' ;
354
396
@@ -408,6 +450,7 @@ export { AxDefaultQueryRewriter };
408
450
export { AxDefaultResultReranker } ;
409
451
export { AxDockerSession } ;
410
452
export { AxEmbeddingAdapter } ;
453
+ export { AxEvalUtil } ;
411
454
export { AxFunctionError } ;
412
455
export { AxFunctionProcessor } ;
413
456
export { AxGen } ;
@@ -431,7 +474,48 @@ export { AxSignature };
431
474
export { AxSimpleClassifier } ;
432
475
export { AxSimpleClassifierClass } ;
433
476
export { AxSpanKindValues } ;
477
+ export { AxStringUtil } ;
434
478
export { AxTestPrompt } ;
479
+ export { axAIAnthropicDefaultConfig } ;
480
+ export { axAIAzureOpenAIBestConfig } ;
481
+ export { axAIAzureOpenAICreativeConfig } ;
482
+ export { axAIAzureOpenAIDefaultConfig } ;
483
+ export { axAIAzureOpenAIFastConfig } ;
484
+ export { axAICohereCreativeConfig } ;
485
+ export { axAICohereDefaultConfig } ;
486
+ export { axAIDeepSeekCodeConfig } ;
487
+ export { axAIDeepSeekDefaultConfig } ;
488
+ export { axAIGoogleGeminiDefaultConfig } ;
489
+ export { axAIGoogleGeminiDefaultCreativeConfig } ;
490
+ export { axAIHuggingFaceCreativeConfig } ;
491
+ export { axAIHuggingFaceDefaultConfig } ;
492
+ export { axAIMistralBestConfig } ;
493
+ export { axAIMistralDefaultConfig } ;
494
+ export { axAIOllamaDefaultConfig } ;
495
+ export { axAIOllamaDefaultCreativeConfig } ;
496
+ export { axAIOpenAIBestConfig } ;
497
+ export { axAIOpenAICreativeConfig } ;
498
+ export { axAIOpenAIDefaultConfig } ;
499
+ export { axAIOpenAIFastConfig } ;
500
+ export { axAIRekaBestConfig } ;
501
+ export { axAIRekaCreativeConfig } ;
502
+ export { axAIRekaDefaultConfig } ;
503
+ export { axAIRekaFastConfig } ;
504
+ export { axAITogetherDefaultConfig } ;
505
+ export { axBaseAIDefaultConfig } ;
506
+ export { axBaseAIDefaultCreativeConfig } ;
507
+ export { axModelInfoAnthropic } ;
508
+ export { axModelInfoCohere } ;
509
+ export { axModelInfoDeepSeek } ;
510
+ export { axModelInfoGoogleGemini } ;
511
+ export { axModelInfoGroq } ;
512
+ export { axModelInfoHuggingFace } ;
513
+ export { axModelInfoMistral } ;
514
+ export { axModelInfoOpenAI } ;
515
+ export { axModelInfoReka } ;
516
+ export { axModelInfoTogether } ;
517
+ export { axSpanAttributes } ;
518
+ export { axSpanEvents } ;
435
519
436
520
// Type exports
437
521
export type { AxAIAnthropicArgs } ;
0 commit comments