File tree 2 files changed +18
-7
lines changed
2 files changed +18
-7
lines changed Original file line number Diff line number Diff line change @@ -19,8 +19,9 @@ IMAGE_OPENAI_MODEL= # Default: dall-e-3
19
19
# Eternal AI's Decentralized Inference API
20
20
ETERNALAI_URL =
21
21
ETERNALAI_MODEL = # Default: "neuralmagic/Meta-Llama-3.1-405B-Instruct-quantized.w4a16"
22
+ ETERNALAI_CHAIN_ID = 45762 # Default: "45762"
22
23
ETERNALAI_API_KEY =
23
- ETERNAL_AI_LOG_REQUEST = false # Default: false
24
+ ETERNAL_AI_LOG_REQUEST = false # Default: false
24
25
25
26
GROK_API_KEY = # GROK/xAI API Key
26
27
GROQ_API_KEY = # Starts with gsk_
Original file line number Diff line number Diff line change @@ -389,6 +389,12 @@ export async function generateText({
389
389
apiKey,
390
390
baseURL : endpoint ,
391
391
fetch : async ( url : string , options : any ) => {
392
+ const chain_id = runtime . getSetting ( "ETERNALAI_CHAIN_ID" ) || "45762"
393
+ if ( options ?. body ) {
394
+ const body = JSON . parse ( options . body ) ;
395
+ body . chain_id = chain_id ;
396
+ options . body = JSON . stringify ( body ) ;
397
+ }
392
398
const fetching = await runtime . fetch ( url , options ) ;
393
399
if (
394
400
parseBooleanFromText (
@@ -400,12 +406,16 @@ export async function generateText({
400
406
JSON . stringify ( options , null , 2 )
401
407
) ;
402
408
const clonedResponse = fetching . clone ( ) ;
403
- clonedResponse . json ( ) . then ( ( data ) => {
404
- elizaLogger . info (
405
- "Response data: " ,
406
- JSON . stringify ( data , null , 2 )
407
- ) ;
408
- } ) ;
409
+ try {
410
+ clonedResponse . json ( ) . then ( ( data ) => {
411
+ elizaLogger . info (
412
+ "Response data: " ,
413
+ JSON . stringify ( data , null , 2 )
414
+ ) ;
415
+ } ) ;
416
+ } catch ( e ) {
417
+ elizaLogger . debug ( e ) ;
418
+ }
409
419
}
410
420
return fetching ;
411
421
} ,
You can’t perform that action at this time.
0 commit comments