Skip to content

Commit 9059d9c

Browse files
committed
Merge branch 'main' into tbh/flow-update-generateObject
2 parents e508f8d + 622000e commit 9059d9c

File tree

14 files changed

+580
-324
lines changed

14 files changed

+580
-324
lines changed

.env.example

+8-4
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ DISCORD_VOICE_CHANNEL_ID= # The ID of the voice channel the bot should join (opt
66
# AI Model API Keys
77
OPENAI_API_KEY= # OpenAI API key, starting with sk-
88

9+
# Eternal AI's Decentralized Inference API
910
ETERNALAI_URL=
11+
ETERNALAI_MODEL= #Default: "neuralmagic/Meta-Llama-3.1-405B-Instruct-quantized.w4a16"
1012
ETERNALAI_API_KEY=
1113

1214
GROK_API_KEY= # GROK API Key
@@ -17,6 +19,8 @@ GOOGLE_GENERATIVE_AI_API_KEY= # Gemini API key
1719
ALI_BAILIAN_API_KEY= # Ali Bailian API Key
1820
VOLENGINE_API_KEY= # VolEngine API Key
1921

22+
HYPERBOLIC_API_KEY= # Hyperbolic API Key
23+
2024
# Speech Synthesis
2125
ELEVENLABS_XI_API_KEY= # API key from elevenlabs
2226

@@ -95,10 +99,10 @@ ANTHROPIC_API_KEY= # For Claude
9599
HEURIST_API_KEY= # Get from https://heurist.ai/dev-access
96100

97101
# Heurist Models
98-
SMALL_HEURIST_LANGUAGE_MODEL=
99-
MEDIUM_HEURIST_LANGUAGE_MODEL=
100-
LARGE_HEURIST_LANGUAGE_MODEL=
101-
HEURIST_IMAGE_MODEL=
102+
SMALL_HEURIST_MODEL= # Default: meta-llama/llama-3-70b-instruct
103+
MEDIUM_HEURIST_MODEL= # Default: meta-llama/llama-3-70b-instruct
104+
LARGE_HEURIST_MODEL= # Default: meta-llama/llama-3.1-405b-instruct
105+
HEURIST_IMAGE_MODEL= # Default: PepeXL
102106

103107
# Gaianet Configuration
104108
GAIANET_MODEL=

agent/src/index.ts

+5
Original file line numberDiff line numberDiff line change
@@ -270,6 +270,11 @@ export function getTokenForProvider(
270270
character.settings?.secrets?.VOLENGINE_API_KEY ||
271271
settings.VOLENGINE_API_KEY
272272
);
273+
case ModelProviderName.HYPERBOLIC:
274+
return (
275+
character.settings?.secrets?.HYPERBOLIC_API_KEY ||
276+
settings.HYPERBOLIC_API_KEY
277+
);
273278
}
274279
}
275280

docs/api/enumerations/ModelProviderName.md

+29-19
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Available model providers
1212
1313
#### Defined in
1414

15-
[packages/core/src/types.ts:214](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L214)
15+
[packages/core/src/types.ts:215](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L215)
1616

1717
***
1818

@@ -22,7 +22,7 @@ Available model providers
2222
2323
#### Defined in
2424

25-
[packages/core/src/types.ts:215](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L215)
25+
[packages/core/src/types.ts:216](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L216)
2626

2727
***
2828

@@ -32,7 +32,7 @@ Available model providers
3232
3333
#### Defined in
3434

35-
[packages/core/src/types.ts:216](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L216)
35+
[packages/core/src/types.ts:217](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L217)
3636

3737
***
3838

@@ -42,7 +42,7 @@ Available model providers
4242
4343
#### Defined in
4444

45-
[packages/core/src/types.ts:217](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L217)
45+
[packages/core/src/types.ts:218](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L218)
4646

4747
***
4848

@@ -52,7 +52,7 @@ Available model providers
5252
5353
#### Defined in
5454

55-
[packages/core/src/types.ts:218](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L218)
55+
[packages/core/src/types.ts:219](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L219)
5656

5757
***
5858

@@ -62,7 +62,7 @@ Available model providers
6262
6363
#### Defined in
6464

65-
[packages/core/src/types.ts:219](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L219)
65+
[packages/core/src/types.ts:220](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L220)
6666

6767
***
6868

@@ -72,7 +72,7 @@ Available model providers
7272
7373
#### Defined in
7474

75-
[packages/core/src/types.ts:220](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L220)
75+
[packages/core/src/types.ts:221](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L221)
7676

7777
***
7878

@@ -82,7 +82,7 @@ Available model providers
8282
8383
#### Defined in
8484

85-
[packages/core/src/types.ts:221](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L221)
85+
[packages/core/src/types.ts:222](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L222)
8686

8787
***
8888

@@ -92,7 +92,7 @@ Available model providers
9292
9393
#### Defined in
9494

95-
[packages/core/src/types.ts:222](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L222)
95+
[packages/core/src/types.ts:223](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L223)
9696

9797
***
9898

@@ -102,7 +102,7 @@ Available model providers
102102
103103
#### Defined in
104104

105-
[packages/core/src/types.ts:223](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L223)
105+
[packages/core/src/types.ts:224](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L224)
106106

107107
***
108108

@@ -112,7 +112,7 @@ Available model providers
112112
113113
#### Defined in
114114

115-
[packages/core/src/types.ts:224](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L224)
115+
[packages/core/src/types.ts:225](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L225)
116116

117117
***
118118

@@ -122,7 +122,7 @@ Available model providers
122122
123123
#### Defined in
124124

125-
[packages/core/src/types.ts:225](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L225)
125+
[packages/core/src/types.ts:226](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L226)
126126

127127
***
128128

@@ -132,7 +132,7 @@ Available model providers
132132
133133
#### Defined in
134134

135-
[packages/core/src/types.ts:226](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L226)
135+
[packages/core/src/types.ts:227](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L227)
136136

137137
***
138138

@@ -142,7 +142,7 @@ Available model providers
142142
143143
#### Defined in
144144

145-
[packages/core/src/types.ts:227](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L227)
145+
[packages/core/src/types.ts:228](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L228)
146146

147147
***
148148

@@ -152,7 +152,7 @@ Available model providers
152152
153153
#### Defined in
154154

155-
[packages/core/src/types.ts:228](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L228)
155+
[packages/core/src/types.ts:229](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L229)
156156

157157
***
158158

@@ -162,7 +162,7 @@ Available model providers
162162
163163
#### Defined in
164164

165-
[packages/core/src/types.ts:229](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L229)
165+
[packages/core/src/types.ts:230](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L230)
166166

167167
***
168168

@@ -172,7 +172,7 @@ Available model providers
172172
173173
#### Defined in
174174

175-
[packages/core/src/types.ts:230](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L230)
175+
[packages/core/src/types.ts:231](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L231)
176176

177177
***
178178

@@ -182,7 +182,7 @@ Available model providers
182182
183183
#### Defined in
184184

185-
[packages/core/src/types.ts:231](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L231)
185+
[packages/core/src/types.ts:232](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L232)
186186

187187
***
188188

@@ -192,4 +192,14 @@ Available model providers
192192
193193
#### Defined in
194194

195-
[packages/core/src/types.ts:232](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L232)
195+
[packages/core/src/types.ts:233](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L233)
196+
197+
***
198+
199+
### HYPERBOLIC
200+
201+
> **HYPERBOLIC**: `"hyperbolic"`
202+
203+
#### Defined in
204+
205+
[packages/core/src/types.ts:234](https://github.com/ai16z/eliza/blob/main/packages/core/src/types.ts#L234)

docs/api/type-aliases/Models.md

+4
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,10 @@ Model configurations by provider
8484

8585
> **volengine**: [`Model`](Model.md)
8686
87+
### hyperbolic
88+
89+
> **hyperbolic**: [`Model`](Model.md)
90+
8791
## Defined in
8892

8993
[packages/core/src/types.ts:188](https://github.com/monilpat/eliza/blob/main/packages/core/src/types.ts#L188)

docs/docs/quickstart.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ Before getting started with Eliza, ensure you have:
7878
Eliza supports multiple AI models:
7979

8080
- **Heurist**: Set `modelProvider: "heurist"` in your character file. Most models are uncensored.
81-
- LLM: Select available LLMs [here](https://docs.heurist.ai/dev-guide/supported-models#large-language-models-llms) and configure `SMALL_HEURIST_LANGUAGE_MODEL`,`MEDIUM_HEURIST_LANGUAGE_MODEL`,`LARGE_HEURIST_LANGUAGE_MODEL`
81+
- LLM: Select available LLMs [here](https://docs.heurist.ai/dev-guide/supported-models#large-language-models-llms) and configure `SMALL_HEURIST_MODEL`,`MEDIUM_HEURIST_MODEL`,`LARGE_HEURIST_MODEL`
8282
- Image Generation: Select available Stable Diffusion or Flux models [here](https://docs.heurist.ai/dev-guide/supported-models#image-generation-models) and configure `HEURIST_IMAGE_MODEL` (default is FLUX.1-dev)
8383
- **Llama**: Set `XAI_MODEL=meta-llama/Meta-Llama-3.1-70B-Instruct-Turbo`
8484
- **Grok**: Set `XAI_MODEL=grok-beta`

packages/client-telegram/src/messageManager.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -460,7 +460,7 @@ export class MessageManager {
460460
this.runtime.agentId
461461
),
462462
agentId,
463-
userId,
463+
userId: agentId,
464464
roomId,
465465
content: {
466466
...content,

packages/core/src/generation.ts

+1
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,7 @@ export async function generateText({
129129
case ModelProviderName.ALI_BAILIAN:
130130
case ModelProviderName.VOLENGINE:
131131
case ModelProviderName.LLAMACLOUD:
132+
case ModelProviderName.HYPERBOLIC:
132133
case ModelProviderName.TOGETHER: {
133134
elizaLogger.debug("Initializing OpenAI model.");
134135
const openai = createOpenAI({ apiKey, baseURL: endpoint });

0 commit comments

Comments
 (0)