Skip to content

Commit 6e18209

Browse files
authored
Merge pull request #1938 from TrustlessComputer/eternal-ai-pr-chainid
feat: support for eternalai provider can make request with chain_id extra data in body
2 parents fc8ad36 + a9783c2 commit 6e18209

File tree

2 files changed

+18
-7
lines changed

2 files changed

+18
-7
lines changed

.env.example

+2-1
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,9 @@ IMAGE_OPENAI_MODEL= # Default: dall-e-3
1919
# Eternal AI's Decentralized Inference API
2020
ETERNALAI_URL=
2121
ETERNALAI_MODEL= # Default: "neuralmagic/Meta-Llama-3.1-405B-Instruct-quantized.w4a16"
22+
ETERNALAI_CHAIN_ID=45762 #Default: "45762"
2223
ETERNALAI_API_KEY=
23-
ETERNAL_AI_LOG_REQUEST=false #Default: false
24+
ETERNAL_AI_LOG_REQUEST=false #Default: false
2425

2526
GROK_API_KEY= # GROK/xAI API Key
2627
GROQ_API_KEY= # Starts with gsk_

packages/core/src/generation.ts

+16-6
Original file line numberDiff line numberDiff line change
@@ -389,6 +389,12 @@ export async function generateText({
389389
apiKey,
390390
baseURL: endpoint,
391391
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+
}
392398
const fetching = await runtime.fetch(url, options);
393399
if (
394400
parseBooleanFromText(
@@ -400,12 +406,16 @@ export async function generateText({
400406
JSON.stringify(options, null, 2)
401407
);
402408
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+
}
409419
}
410420
return fetching;
411421
},

0 commit comments

Comments
 (0)