File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed
Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -126,6 +126,15 @@ export namespace Provider {
126126 options : { } ,
127127 }
128128 } ,
129+ azure : async ( ) => {
130+ return {
131+ autoload : false ,
132+ async getModel ( sdk : any , modelID : string ) {
133+ return sdk . responses ( modelID )
134+ } ,
135+ options : { } ,
136+ }
137+ } ,
129138 "amazon-bedrock" : async ( ) => {
130139 if ( ! process . env [ "AWS_PROFILE" ] && ! process . env [ "AWS_ACCESS_KEY_ID" ] && ! process . env [ "AWS_BEARER_TOKEN_BEDROCK" ] )
131140 return { autoload : false }
Original file line number Diff line number Diff line change @@ -74,7 +74,8 @@ export namespace ToolRegistry {
7474 modelID . toLowerCase ( ) . includes ( "qwen" ) ||
7575 modelID . includes ( "gpt-" ) ||
7676 modelID . includes ( "o1" ) ||
77- modelID . includes ( "o3" )
77+ modelID . includes ( "o3" ) ||
78+ modelID . includes ( "codex" )
7879 ) {
7980 return {
8081 patch : false ,
You can’t perform that action at this time.
0 commit comments