File tree 5 files changed +3861
-0
lines changed
5 files changed +3861
-0
lines changed Original file line number Diff line number Diff line change @@ -37,6 +37,18 @@ SMALL_HYPERBOLIC_MODEL= # Default: meta-llama/Llama-3.2-3B-Instruct
37
37
MEDIUM_HYPERBOLIC_MODEL = # Default: meta-llama/Meta-Llama-3.1-70B-Instruct
38
38
LARGE_HYPERBOLIC_MODEL = # Default: meta-llama/Meta-Llama-3.1-405-Instruct
39
39
40
+
41
+ # Infera Configuration
42
+
43
+ INFERA_API_KEY = # visit api.infera.org/docs to obtain an API key under /signup_user
44
+ INFERA_MODEL = # Default: llama3.2:latest
45
+ INFERA_SERVER_URL = # Default: https://api.infera.org/
46
+
47
+ SMALL_INFERA_MODEL = #Recommended: llama3.2:latest
48
+ MEDIUM_INFERA_MODEL = #Recommended: mistral-nemo:latest
49
+ LARGE_INFERA_MODEL = #Recommended: mistral-small:latest
50
+
51
+
40
52
# Livepeer configuration
41
53
LIVEPEER_GATEWAY_URL = # Free inference gateways and docs: https://livepeer-eliza.com/
42
54
LIVEPEER_IMAGE_MODEL = # Default: ByteDance/SDXL-Lightning
Original file line number Diff line number Diff line change @@ -349,6 +349,11 @@ export function getTokenForProvider(
349
349
character . settings ?. secrets ?. GOOGLE_GENERATIVE_AI_API_KEY ||
350
350
settings . GOOGLE_GENERATIVE_AI_API_KEY
351
351
) ;
352
+ case ModelProviderName . INFERA :
353
+ return (
354
+ character . settings ?. secrets ?. INFERA_API_KEY ||
355
+ settings . INFERA_API_KEY
356
+ ) ;
352
357
default :
353
358
const errorMessage = `Failed to get token - unsupported model provider: ${ provider } ` ;
354
359
elizaLogger . error ( errorMessage ) ;
You can’t perform that action at this time.
0 commit comments