Skip to content

Commit 8148a22

Browse files
authored
Merge pull request #27 from ai16z/main
merge from main
2 parents cf6c182 + 4b1caa0 commit 8148a22

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+1083
-853
lines changed

.env.example

+5-1
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,12 @@ LARGE_OLLAMA_MODEL= #default hermes3:70b
5555
# For asking Claude stuff
5656
ANTHROPIC_API_KEY=
5757

58-
# Heurist API
58+
# Heurist API (Get API Key at https://heurist.ai/dev-access)
5959
HEURIST_API_KEY=
60+
SMALL_HEURIST_LANGUAGE_MODEL=
61+
MEDIUM_HEURIST_LANGUAGE_MODEL=
62+
LARGE_HEURIST_LANGUAGE_MODEL=
63+
HEURIST_IMAGE_MODEL=
6064

6165
WALLET_PRIVATE_KEY=EXAMPLE_WALLET_PRIVATE_KEY
6266
WALLET_PUBLIC_KEY=EXAMPLE_WALLET_PUBLIC_KEY

README.md

+17
Original file line numberDiff line numberDiff line change
@@ -198,3 +198,20 @@ pnpm docker
198198
This will drop you into a shell inside the docker container where you can continue to configure the instance
199199

200200
and then you can start it with `pnpm start`
201+
202+
203+
## Community & contact
204+
205+
* [GitHub Issues](https://github.com/ai16z/eliza/issues). Best for: bugs you encounter using Eliza, and feature proposals.
206+
* [Discord](https://discord.gg/ai16z). Best for: sharing your applications and hanging out with the community.
207+
208+
209+
**Contributors**
210+
211+
<a href="https://github.com/ai16z/eliza/graphs/contributors">
212+
<img src="https://contrib.rocks/image?repo=ai16z/eliza" />
213+
</a>
214+
215+
## Star History
216+
217+
[![Star History Chart](https://api.star-history.com/svg?repos=ai16z/eliza&type=Date)](https://star-history.com/#ai16z/eliza&Date)

docs/api/classes/AgentRuntime.md

+35-35
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ The ID of the agent
9797

9898
[packages/core/src/runtime.ts:59](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L59)
9999

100-
---
100+
***
101101

102102
### serverUrl
103103

@@ -113,7 +113,7 @@ The base URL of the server where the agent's requests are processed.
113113

114114
[packages/core/src/runtime.ts:63](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L63)
115115

116-
---
116+
***
117117

118118
### databaseAdapter
119119

@@ -129,7 +129,7 @@ The database adapter used for interacting with the database.
129129

130130
[packages/core/src/runtime.ts:68](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L68)
131131

132-
---
132+
***
133133

134134
### token
135135

@@ -145,7 +145,7 @@ Authentication token used for securing requests.
145145

146146
[packages/core/src/runtime.ts:73](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L73)
147147

148-
---
148+
***
149149

150150
### actions
151151

@@ -161,7 +161,7 @@ Custom actions that the agent can perform.
161161

162162
[packages/core/src/runtime.ts:78](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L78)
163163

164-
---
164+
***
165165

166166
### evaluators
167167

@@ -177,7 +177,7 @@ Evaluators used to assess and guide the agent's responses.
177177

178178
[packages/core/src/runtime.ts:83](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L83)
179179

180-
---
180+
***
181181

182182
### providers
183183

@@ -193,7 +193,7 @@ Context providers used to provide context for message generation.
193193

194194
[packages/core/src/runtime.ts:88](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L88)
195195

196-
---
196+
***
197197

198198
### modelProvider
199199

@@ -209,7 +209,7 @@ The model to use for generateText.
209209

210210
[packages/core/src/runtime.ts:93](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L93)
211211

212-
---
212+
***
213213

214214
### fetch()
215215

@@ -244,7 +244,7 @@ Some environments may not have access to the global fetch function and need a cu
244244

245245
[packages/core/src/runtime.ts:99](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L99)
246246

247-
---
247+
***
248248

249249
### character
250250

@@ -260,7 +260,7 @@ The character to use for the agent
260260

261261
[packages/core/src/runtime.ts:104](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L104)
262262

263-
---
263+
***
264264

265265
### messageManager
266266

@@ -276,7 +276,7 @@ Store messages that are sent and received by the agent.
276276

277277
[packages/core/src/runtime.ts:109](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L109)
278278

279-
---
279+
***
280280

281281
### descriptionManager
282282

@@ -292,7 +292,7 @@ Store and recall descriptions of users based on conversations.
292292

293293
[packages/core/src/runtime.ts:114](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L114)
294294

295-
---
295+
***
296296

297297
### loreManager
298298

@@ -308,7 +308,7 @@ Manage the creation and recall of static information (documents, historical game
308308

309309
[packages/core/src/runtime.ts:119](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L119)
310310

311-
---
311+
***
312312

313313
### documentsManager
314314

@@ -320,7 +320,7 @@ Hold large documents that can be referenced
320320

321321
[packages/core/src/runtime.ts:124](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L124)
322322

323-
---
323+
***
324324

325325
### knowledgeManager
326326

@@ -332,7 +332,7 @@ Searchable document fragments
332332

333333
[packages/core/src/runtime.ts:129](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L129)
334334

335-
---
335+
***
336336

337337
### services
338338

@@ -346,7 +346,7 @@ Searchable document fragments
346346

347347
[packages/core/src/runtime.ts:131](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L131)
348348

349-
---
349+
***
350350

351351
### memoryManagers
352352

@@ -378,7 +378,7 @@ Searchable document fragments
378378

379379
[packages/core/src/runtime.ts:134](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L134)
380380

381-
---
381+
***
382382

383383
### getMemoryManager()
384384

@@ -400,19 +400,19 @@ Searchable document fragments
400400

401401
[packages/core/src/runtime.ts:149](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L149)
402402

403-
---
403+
***
404404

405405
### getService()
406406

407-
> **getService**(`service`): _typeof_ [`Service`](Service.md)
407+
> **getService**(`service`): *typeof* [`Service`](Service.md)
408408
409409
#### Parameters
410410

411411
**service**: [`ServiceType`](../enumerations/ServiceType.md)
412412

413413
#### Returns
414414

415-
_typeof_ [`Service`](Service.md)
415+
*typeof* [`Service`](Service.md)
416416

417417
#### Implementation of
418418

@@ -422,7 +422,7 @@ _typeof_ [`Service`](Service.md)
422422

423423
[packages/core/src/runtime.ts:153](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L153)
424424

425-
---
425+
***
426426

427427
### registerService()
428428

@@ -444,7 +444,7 @@ _typeof_ [`Service`](Service.md)
444444

445445
[packages/core/src/runtime.ts:161](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L161)
446446

447-
---
447+
***
448448

449449
### getSetting()
450450

@@ -466,7 +466,7 @@ _typeof_ [`Service`](Service.md)
466466

467467
[packages/core/src/runtime.ts:368](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L368)
468468

469-
---
469+
***
470470

471471
### getConversationLength()
472472

@@ -488,7 +488,7 @@ The number of recent messages to be kept in memory.
488488

489489
[packages/core/src/runtime.ts:390](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L390)
490490

491-
---
491+
***
492492

493493
### registerAction()
494494

@@ -514,7 +514,7 @@ The action to register.
514514

515515
[packages/core/src/runtime.ts:398](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L398)
516516

517-
---
517+
***
518518

519519
### registerEvaluator()
520520

@@ -536,7 +536,7 @@ The evaluator to register.
536536

537537
[packages/core/src/runtime.ts:407](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L407)
538538

539-
---
539+
***
540540

541541
### registerContextProvider()
542542

@@ -558,7 +558,7 @@ The context provider to register.
558558

559559
[packages/core/src/runtime.ts:415](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L415)
560560

561-
---
561+
***
562562

563563
### processActions()
564564

@@ -590,7 +590,7 @@ The message to process.
590590

591591
[packages/core/src/runtime.ts:424](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L424)
592592

593-
---
593+
***
594594

595595
### evaluate()
596596

@@ -626,7 +626,7 @@ The results of the evaluation.
626626

627627
[packages/core/src/runtime.ts:497](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L497)
628628

629-
---
629+
***
630630

631631
### ensureParticipantExists()
632632

@@ -658,7 +658,7 @@ An error if the participant cannot be added.
658658

659659
[packages/core/src/runtime.ts:567](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L567)
660660

661-
---
661+
***
662662

663663
### ensureUserExists()
664664

@@ -694,7 +694,7 @@ The user name to ensure the existence of.
694694

695695
[packages/core/src/runtime.ts:583](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L583)
696696

697-
---
697+
***
698698

699699
### ensureParticipantInRoom()
700700

@@ -718,7 +718,7 @@ The user name to ensure the existence of.
718718

719719
[packages/core/src/runtime.ts:603](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L603)
720720

721-
---
721+
***
722722

723723
### ensureConnection()
724724

@@ -748,7 +748,7 @@ The user name to ensure the existence of.
748748

749749
[packages/core/src/runtime.ts:614](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L614)
750750

751-
---
751+
***
752752

753753
### ensureRoomExists()
754754

@@ -779,7 +779,7 @@ An error if the room cannot be created.
779779

780780
[packages/core/src/runtime.ts:650](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L650)
781781

782-
---
782+
***
783783

784784
### composeState()
785785

@@ -809,7 +809,7 @@ The state of the agent.
809809

810810
[packages/core/src/runtime.ts:663](https://github.com/ai16z/eliza/blob/main/packages/core/src/runtime.ts#L663)
811811

812-
---
812+
***
813813

814814
### updateRecentMessageState()
815815

0 commit comments

Comments
 (0)