File tree 1 file changed +8
-0
lines changed
1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,10 @@ export const getLLMConfig = () => {
15
15
AZURE_API_VERSION : z . string ( ) . optional ( ) ,
16
16
AZURE_ENDPOINT : z . string ( ) . optional ( ) ,
17
17
18
+ ENABLED_AZUREAI : z . boolean ( ) ,
19
+ AZUREAI_ENDPOINT : z . string ( ) . optional ( ) ,
20
+ AZUREAI_ENDPOINT_KEY : z . string ( ) . optional ( ) ,
21
+
18
22
ENABLED_ZHIPU : z . boolean ( ) ,
19
23
ZHIPU_API_KEY : z . string ( ) . optional ( ) ,
20
24
@@ -155,6 +159,10 @@ export const getLLMConfig = () => {
155
159
AZURE_API_VERSION : process . env . AZURE_API_VERSION ,
156
160
AZURE_ENDPOINT : process . env . AZURE_ENDPOINT ,
157
161
162
+ ENABLED_AZUREAI : ! ! process . env . AZUREAI_ENDPOINT_KEY ,
163
+ AZUREAI_ENDPOINT_KEY : process . env . AZUREAI_ENDPOINT_KEY ,
164
+ AZUREAI_ENDPOINT : process . env . AZUREAI_ENDPOINT ,
165
+
158
166
ENABLED_ZHIPU : ! ! process . env . ZHIPU_API_KEY ,
159
167
ZHIPU_API_KEY : process . env . ZHIPU_API_KEY ,
160
168
You can’t perform that action at this time.
0 commit comments