Skip to content

Commit 5f3aeda

Browse files
author
mike dupont
committed
lint fix
1 parent 4bfa1c2 commit 5f3aeda

File tree

206 files changed

+5513
-54693
lines changed

Some content is hidden

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

206 files changed

+5513
-54693
lines changed

.devcontainer/devcontainer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@
3535
}
3636
},
3737
"features": {}
38-
}
38+
}

.github/workflows/pnpm-lockfile-check.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ jobs:
3838
owner: context.repo.owner,
3939
repo: context.repo.repo,
4040
body: '❌ The pnpm-lockfile is out of date. Please run `pnpm install --no-frozen-lockfile` and commit the updated pnpm-lock.yaml file.'
41-
})
41+
})

README.md

+149-149
Original file line numberDiff line numberDiff line change
@@ -1,149 +1,149 @@
1-
# Eliza 🤖
2-
3-
<div align="center">
4-
<img src="./docs/static/img/eliza_banner.jpg" alt="Eliza Banner" width="100%" />
5-
</div>
6-
7-
<div align="center">
8-
9-
📖 [Documentation](https://elizaos.github.io/eliza/) | 🎯 [Examples](https://github.com/thejoven/awesome-eliza)
10-
11-
</div>
12-
13-
## 🌍 README Translations
14-
15-
[中文说明](./README_CN.md) | [日本語の説明](./README_JA.md) | [한국어 설명](./README_KOR.md) | [Français](./README_FR.md) | [Português](./README_PTBR.md) | [Türkçe](./README_TR.md) | [Русский](./README_RU.md) | [Español](./README_ES.md) | [Italiano](./README_IT.md) | [ไทย](./README_TH.md) | [Deutsch](./README_DE.md) | [Tiếng Việt](./README_VI.md) | [עִברִית](https://github.com/elizaos/Elisa/blob/main/README_HE.md) | [Tagalog](./README_TG.md) | [Polski](./README_PL.md) | [Arabic](./README_AR.md) | [Hungarian](./README_HU.md) | [Srpski](./README_RS.md) | [Română](./README_RO.md) | [Nederlands](./README_NL.md)
16-
17-
## 🚩 Overview
18-
19-
<div align="center">
20-
<img src="./docs/static/img/eliza_diagram.png" alt="Eliza Diagram" width="100%" />
21-
</div>
22-
23-
## ✨ Features
24-
25-
- 🛠️ Full-featured Discord, Twitter and Telegram connectors
26-
- 🔗 Support for every model (Llama, Grok, OpenAI, Anthropic, etc.)
27-
- 👥 Multi-agent and room support
28-
- 📚 Easily ingest and interact with your documents
29-
- 💾 Retrievable memory and document store
30-
- 🚀 Highly extensible - create your own actions and clients
31-
- ☁️ Supports many models (local Llama, OpenAI, Anthropic, Groq, etc.)
32-
- 📦 Just works!
33-
34-
## Video Tutorials
35-
36-
[AI Agent Dev School](https://www.youtube.com/watch?v=ArptLpQiKfI&list=PLx5pnFXdPTRzWla0RaOxALTSTnVq53fKL)
37-
38-
## 🎯 Use Cases
39-
40-
- 🤖 Chatbots
41-
- 🕵️ Autonomous Agents
42-
- 📈 Business Process Handling
43-
- 🎮 Video Game NPCs
44-
- 🧠 Trading
45-
46-
## 🚀 Quick Start
47-
48-
### Prerequisites
49-
50-
- [Python 2.7+](https://www.python.org/downloads/)
51-
- [Node.js 23+](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm)
52-
- [pnpm](https://pnpm.io/installation)
53-
54-
> **Note for Windows Users:** [WSL 2](https://learn.microsoft.com/en-us/windows/wsl/install-manual) is required.
55-
56-
### Use the Starter (Recommended)
57-
58-
```bash
59-
git clone https://github.com/elizaos/eliza-starter.git
60-
cd eliza-starter
61-
cp .env.example .env
62-
pnpm i && pnpm build && pnpm start
63-
```
64-
65-
Once the agent is running, you should see the message to run "pnpm start:client" at the end.
66-
Open another terminal and move to same directory and then run below command and follow the URL to chat to your agent.
67-
68-
```bash
69-
pnpm start:client
70-
```
71-
72-
Then read the [Documentation](https://elizaos.github.io/eliza/) to learn how to customize your Eliza.
73-
74-
### Manually Start Eliza (Only recommended if you know what you are doing)
75-
76-
```bash
77-
# Clone the repository
78-
git clone https://github.com/elizaos/eliza.git
79-
80-
# Checkout the latest release
81-
# This project iterates fast, so we recommend checking out the latest release
82-
git checkout $(git describe --tags --abbrev=0)
83-
```
84-
85-
### Start Eliza with Gitpod
86-
87-
[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/elizaos/eliza/tree/main)
88-
89-
### Edit the .env file
90-
91-
Copy .env.example to .env and fill in the appropriate values.
92-
93-
```
94-
cp .env.example .env
95-
```
96-
97-
Note: .env is optional. If you're planning to run multiple distinct agents, you can pass secrets through the character JSON
98-
99-
### Automatically Start Eliza
100-
101-
This will run everything to set up the project and start the bot with the default character.
102-
103-
```bash
104-
sh scripts/start.sh
105-
```
106-
107-
### Edit the character file
108-
109-
1. Open `packages/core/src/defaultCharacter.ts` to modify the default character. Uncomment and edit.
110-
111-
2. To load custom characters:
112-
- Use `pnpm start --characters="path/to/your/character.json"`
113-
- Multiple character files can be loaded simultaneously
114-
3. Connect with X (Twitter)
115-
- change `"clients": []` to `"clients": ["twitter"]` in the character file to connect with X
116-
117-
### Manually Start Eliza
118-
119-
```bash
120-
pnpm i
121-
pnpm build
122-
pnpm start
123-
124-
# The project iterates fast, sometimes you need to clean the project if you are coming back to the project
125-
pnpm clean
126-
```
127-
128-
#### Additional Requirements
129-
130-
You may need to install Sharp. If you see an error when starting up, try installing it with the following command:
131-
132-
```
133-
pnpm install --include=optional sharp
134-
```
135-
136-
### Community & contact
137-
138-
- [GitHub Issues](https://github.com/elizaos/eliza/issues). Best for: bugs you encounter using Eliza, and feature proposals.
139-
- [Discord](https://discord.gg/ai16z). Best for: sharing your applications and hanging out with the community.
140-
141-
## Contributors
142-
143-
<a href="https://github.com/elizaos/eliza/graphs/contributors">
144-
<img src="https://contrib.rocks/image?repo=elizaos/eliza" />
145-
</a>
146-
147-
## Star History
148-
149-
[![Star History Chart](https://api.star-history.com/svg?repos=elizaos/eliza&type=Date)](https://star-history.com/#elizaos/eliza&Date)
1+
# Eliza 🤖
2+
3+
<div align="center">
4+
<img src="./docs/static/img/eliza_banner.jpg" alt="Eliza Banner" width="100%" />
5+
</div>
6+
7+
<div align="center">
8+
9+
📖 [Documentation](https://elizaos.github.io/eliza/) | 🎯 [Examples](https://github.com/thejoven/awesome-eliza)
10+
11+
</div>
12+
13+
## 🌍 README Translations
14+
15+
[中文说明](./README_CN.md) | [日本語の説明](./README_JA.md) | [한국어 설명](./README_KOR.md) | [Français](./README_FR.md) | [Português](./README_PTBR.md) | [Türkçe](./README_TR.md) | [Русский](./README_RU.md) | [Español](./README_ES.md) | [Italiano](./README_IT.md) | [ไทย](./README_TH.md) | [Deutsch](./README_DE.md) | [Tiếng Việt](./README_VI.md) | [עִברִית](https://github.com/elizaos/Elisa/blob/main/README_HE.md) | [Tagalog](./README_TG.md) | [Polski](./README_PL.md) | [Arabic](./README_AR.md) | [Hungarian](./README_HU.md) | [Srpski](./README_RS.md) | [Română](./README_RO.md) | [Nederlands](./README_NL.md)
16+
17+
## 🚩 Overview
18+
19+
<div align="center">
20+
<img src="./docs/static/img/eliza_diagram.png" alt="Eliza Diagram" width="100%" />
21+
</div>
22+
23+
## ✨ Features
24+
25+
- 🛠️ Full-featured Discord, Twitter and Telegram connectors
26+
- 🔗 Support for every model (Llama, Grok, OpenAI, Anthropic, etc.)
27+
- 👥 Multi-agent and room support
28+
- 📚 Easily ingest and interact with your documents
29+
- 💾 Retrievable memory and document store
30+
- 🚀 Highly extensible - create your own actions and clients
31+
- ☁️ Supports many models (local Llama, OpenAI, Anthropic, Groq, etc.)
32+
- 📦 Just works!
33+
34+
## Video Tutorials
35+
36+
[AI Agent Dev School](https://www.youtube.com/watch?v=ArptLpQiKfI&list=PLx5pnFXdPTRzWla0RaOxALTSTnVq53fKL)
37+
38+
## 🎯 Use Cases
39+
40+
- 🤖 Chatbots
41+
- 🕵️ Autonomous Agents
42+
- 📈 Business Process Handling
43+
- 🎮 Video Game NPCs
44+
- 🧠 Trading
45+
46+
## 🚀 Quick Start
47+
48+
### Prerequisites
49+
50+
- [Python 2.7+](https://www.python.org/downloads/)
51+
- [Node.js 23+](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm)
52+
- [pnpm](https://pnpm.io/installation)
53+
54+
> **Note for Windows Users:** [WSL 2](https://learn.microsoft.com/en-us/windows/wsl/install-manual) is required.
55+
56+
### Use the Starter (Recommended)
57+
58+
```bash
59+
git clone https://github.com/elizaos/eliza-starter.git
60+
cd eliza-starter
61+
cp .env.example .env
62+
pnpm i && pnpm build && pnpm start
63+
```
64+
65+
Once the agent is running, you should see the message to run "pnpm start:client" at the end.
66+
Open another terminal and move to same directory and then run below command and follow the URL to chat to your agent.
67+
68+
```bash
69+
pnpm start:client
70+
```
71+
72+
Then read the [Documentation](https://elizaos.github.io/eliza/) to learn how to customize your Eliza.
73+
74+
### Manually Start Eliza (Only recommended if you know what you are doing)
75+
76+
```bash
77+
# Clone the repository
78+
git clone https://github.com/elizaos/eliza.git
79+
80+
# Checkout the latest release
81+
# This project iterates fast, so we recommend checking out the latest release
82+
git checkout $(git describe --tags --abbrev=0)
83+
```
84+
85+
### Start Eliza with Gitpod
86+
87+
[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/elizaos/eliza/tree/main)
88+
89+
### Edit the .env file
90+
91+
Copy .env.example to .env and fill in the appropriate values.
92+
93+
```
94+
cp .env.example .env
95+
```
96+
97+
Note: .env is optional. If you're planning to run multiple distinct agents, you can pass secrets through the character JSON
98+
99+
### Automatically Start Eliza
100+
101+
This will run everything to set up the project and start the bot with the default character.
102+
103+
```bash
104+
sh scripts/start.sh
105+
```
106+
107+
### Edit the character file
108+
109+
1. Open `packages/core/src/defaultCharacter.ts` to modify the default character. Uncomment and edit.
110+
111+
2. To load custom characters:
112+
- Use `pnpm start --characters="path/to/your/character.json"`
113+
- Multiple character files can be loaded simultaneously
114+
3. Connect with X (Twitter)
115+
- change `"clients": []` to `"clients": ["twitter"]` in the character file to connect with X
116+
117+
### Manually Start Eliza
118+
119+
```bash
120+
pnpm i
121+
pnpm build
122+
pnpm start
123+
124+
# The project iterates fast, sometimes you need to clean the project if you are coming back to the project
125+
pnpm clean
126+
```
127+
128+
#### Additional Requirements
129+
130+
You may need to install Sharp. If you see an error when starting up, try installing it with the following command:
131+
132+
```
133+
pnpm install --include=optional sharp
134+
```
135+
136+
### Community & contact
137+
138+
- [GitHub Issues](https://github.com/elizaos/eliza/issues). Best for: bugs you encounter using Eliza, and feature proposals.
139+
- [Discord](https://discord.gg/ai16z). Best for: sharing your applications and hanging out with the community.
140+
141+
## Contributors
142+
143+
<a href="https://github.com/elizaos/eliza/graphs/contributors">
144+
<img src="https://contrib.rocks/image?repo=elizaos/eliza" />
145+
</a>
146+
147+
## Star History
148+
149+
[![Star History Chart](https://api.star-history.com/svg?repos=elizaos/eliza&type=Date)](https://star-history.com/#elizaos/eliza&Date)

README_NL.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ Om duurzame ontwikkeling en continue innovatie te garanderen, vragen we bijdrage
5252
Alle bijdragen worden publiekelijk bijgehouden op de blockchain en worden uitsluitend gebruikt voor ecosysteemontwikkeling.
5353

5454
### ⚠️ Vergeet de grote baas geen fooi van 10% te geven.: ⚠️
55+
5556
[AM84n1iLdxgVTAyENBcLdjXoyvjentTbu5Q6EpKV1PeG](https://solscan.io/account/AM84n1iLdxgVTAyENBcLdjXoyvjentTbu5Q6EpKV1PeG)
5657

5758
## 🚀 Quick Start
@@ -158,4 +159,4 @@ pnpm install --include=optional sharp
158159

159160
## Ster Historie
160161

161-
[![Star History Chart](https://api.star-history.com/svg?repos=elizaos/eliza&type=Date)](https://star-history.com/#elizaos/eliza&Date)
162+
[![Star History Chart](https://api.star-history.com/svg?repos=elizaos/eliza&type=Date)](https://star-history.com/#elizaos/eliza&Date)

README_RO.md

+22-22
Original file line numberDiff line numberDiff line change
@@ -4,38 +4,38 @@
44

55
## Funcționalități
66

7-
- 🛠 Conectori compleți pentru Discord, Twitter și Telegram
8-
- 👥 Suport pentru agenți multipli și camere
9-
- 📚 Ingestie și interacțiune ușoară cu documentele tale
10-
- 💾 Memorie recuperabilă și stocare de documente
11-
- 🚀 Extensibil în mod ridicat – creează propriile acțiuni și clienți pentru a extinde capacitățile
12-
- ☁️ Suportă multe modele, inclusiv Llama local, OpenAI, Anthropic, Groq și altele
13-
- 📦 Funcționează perfect!
7+
- 🛠 Conectori compleți pentru Discord, Twitter și Telegram
8+
- 👥 Suport pentru agenți multipli și camere
9+
- 📚 Ingestie și interacțiune ușoară cu documentele tale
10+
- 💾 Memorie recuperabilă și stocare de documente
11+
- 🚀 Extensibil în mod ridicat – creează propriile acțiuni și clienți pentru a extinde capacitățile
12+
- ☁️ Suportă multe modele, inclusiv Llama local, OpenAI, Anthropic, Groq și altele
13+
- 📦 Funcționează perfect!
1414

1515
## Pentru ce pot să-l folosesc?
1616

17-
- 🤖 Chatbot-uri
18-
- 🕵️ Agenți autonomi
19-
- 📈 Gestiunea proceselor de afaceri
20-
- 🎮 NPC-uri în jocuri video
17+
- 🤖 Chatbot-uri
18+
- 🕵️ Agenți autonomi
19+
- 📈 Gestiunea proceselor de afaceri
20+
- 🎮 NPC-uri în jocuri video
2121

2222
# Început
2323

2424
**Cerințe preliminare (OBLIGATORIU):**
2525

26-
- [Python 2.7+](https://www.python.org/downloads/)
27-
- [Node.js 23.3+](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm)
28-
- [pnpm](https://pnpm.io/installation)
26+
- [Python 2.7+](https://www.python.org/downloads/)
27+
- [Node.js 23.3+](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm)
28+
- [pnpm](https://pnpm.io/installation)
2929

3030
### Edite fișierul .env
3131

32-
- Copiați `.env.example` în `.env` și completați valorile corespunzătoare
33-
- Editați variabilele de mediu pentru TWITTER pentru a adăuga numele de utilizator și parola botului dvs.
32+
- Copiați `.env.example` în `.env` și completați valorile corespunzătoare
33+
- Editați variabilele de mediu pentru TWITTER pentru a adăuga numele de utilizator și parola botului dvs.
3434

3535
### Edite fișierul de personaj
3636

37-
- Verificați fișierul `src/core/defaultCharacter.ts` – îl puteți modifica
38-
- De asemenea, puteți încărca personaje cu comanda `pnpm start --characters="path/to/your/character.json"` și rula mai mulți boți în același timp.
37+
- Verificați fișierul `src/core/defaultCharacter.ts` – îl puteți modifica
38+
- De asemenea, puteți încărca personaje cu comanda `pnpm start --characters="path/to/your/character.json"` și rula mai mulți boți în același timp.
3939

4040
După ce ați configurat fișierul .env și fișierul de personaj, puteți porni botul cu următoarea comandă:
4141

@@ -174,9 +174,9 @@ pnpm test:sqljs # Execută testele cu SQL.js
174174

175175
Testele sunt scrise folosind Jest și pot fi găsite în fișierele `src/**/*.test.ts`. Mediul de testare este configurat pentru:
176176

177-
- Încărcarea variabilelor de mediu din `.env.test`
178-
- Utilizarea unui timeout de 2 minute pentru teste de lungă durată
179-
- Suport pentru module ESM
180-
- Rularea testelor în secvență (`--runInBand`)
177+
- Încărcarea variabilelor de mediu din `.env.test`
178+
- Utilizarea unui timeout de 2 minute pentru teste de lungă durată
179+
- Suport pentru module ESM
180+
- Rularea testelor în secvență (`--runInBand`)
181181

182182
Pentru a crea teste noi, adăugați un fișier `.test.ts` adiacent codului pe care îl testați.

0 commit comments

Comments
 (0)