@@ -77,6 +77,12 @@ const agentType = {
7777} ;
7878export const AgentType = Object . freeze ( agentType ) ;
7979
80+ const agentCodeScriptType = {
81+ Src : 'src' ,
82+ Test : 'test'
83+ } ;
84+ export const AgentCodeScriptType = Object . freeze ( agentCodeScriptType ) ;
85+
8086const routingMode = {
8187 Eager : "eager" ,
8288 Lazy : "lazy"
@@ -203,14 +209,34 @@ const globalEvent = {
203209export const GlobalEvent = Object . freeze ( globalEvent ) ;
204210
205211const llmModelType = {
206- Text : 1 ,
207- Chat : 2 ,
208- Image : 3 ,
209- Embedding : 4 ,
210- Audio : 5
212+ All : "All" ,
213+ Text : "Text" ,
214+ Chat : "Chat" ,
215+ Image : "Image" ,
216+ Embedding : "Embedding" ,
217+ Audio : "Audio" ,
218+ Realtime : "Realtime" ,
219+ Web : "Web"
211220} ;
212221export const LlmModelType = Object . freeze ( llmModelType ) ;
213222
223+ const llmModelCapability = {
224+ All : "All" ,
225+ Text : "Text" ,
226+ Chat : "Chat" ,
227+ ImageReading : "ImageReading" ,
228+ ImageGeneration : "ImageGeneration" ,
229+ ImageEdit : "ImageEdit" ,
230+ ImageVariation : "ImageVariation" ,
231+ Embedding : "Embedding" ,
232+ AudioTranscription : "AudioTranscription" ,
233+ AudioGeneration : "AudioGeneration" ,
234+ Realtime : "Realtime" ,
235+ WebSearch : "WebSearch" ,
236+ PdfReading : "PdfReading"
237+ } ;
238+ export const LlmModelCapability = Object . freeze ( llmModelCapability ) ;
239+
214240const reasoningEffortLevel = {
215241 Minimal : "minimal" ,
216242 Low : "low" ,
0 commit comments