Skip to content

Commit 11f21d2

Browse files
committed
"chore : add injective plugin in agents"
1 parent 69c1d80 commit 11f21d2

File tree

311 files changed

+9115
-6904
lines changed

Some content is hidden

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

311 files changed

+9115
-6904
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+
}

.vscode/settings.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,4 +55,4 @@
5555
"README.md": "*.md",
5656
"Dockerfile": "docker-compose-docs.yaml,docker-compose.yaml,Dockerfile.docs"
5757
}
58-
}
58+
}

README.md

+151-151
Original file line numberDiff line numberDiff line change
@@ -1,151 +1,151 @@
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) | [Persian](./README_FA.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) | [Ελληνικά](./README_GR.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-
# If the above doesn't checkout the latest release, this should work:
84-
# git checkout $(git describe --tags `git rev-list --tags --max-count=1`)
85-
```
86-
87-
### Start Eliza with Gitpod
88-
89-
[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/elizaos/eliza/tree/main)
90-
91-
### Edit the .env file
92-
93-
Copy .env.example to .env and fill in the appropriate values.
94-
95-
```
96-
cp .env.example .env
97-
```
98-
99-
Note: .env is optional. If you're planning to run multiple distinct agents, you can pass secrets through the character JSON
100-
101-
### Automatically Start Eliza
102-
103-
This will run everything to set up the project and start the bot with the default character.
104-
105-
```bash
106-
sh scripts/start.sh
107-
```
108-
109-
### Edit the character file
110-
111-
1. Open `packages/core/src/defaultCharacter.ts` to modify the default character. Uncomment and edit.
112-
113-
2. To load custom characters:
114-
- Use `pnpm start --characters="path/to/your/character.json"`
115-
- Multiple character files can be loaded simultaneously
116-
3. Connect with X (Twitter)
117-
- change `"clients": []` to `"clients": ["twitter"]` in the character file to connect with X
118-
119-
### Manually Start Eliza
120-
121-
```bash
122-
pnpm i
123-
pnpm build
124-
pnpm start
125-
126-
# The project iterates fast, sometimes you need to clean the project if you are coming back to the project
127-
pnpm clean
128-
```
129-
130-
#### Additional Requirements
131-
132-
You may need to install Sharp. If you see an error when starting up, try installing it with the following command:
133-
134-
```
135-
pnpm install --include=optional sharp
136-
```
137-
138-
### Community & contact
139-
140-
- [GitHub Issues](https://github.com/elizaos/eliza/issues). Best for: bugs you encounter using Eliza, and feature proposals.
141-
- [Discord](https://discord.gg/ai16z). Best for: sharing your applications and hanging out with the community.
142-
143-
## Contributors
144-
145-
<a href="https://github.com/elizaos/eliza/graphs/contributors">
146-
<img src="https://contrib.rocks/image?repo=elizaos/eliza" />
147-
</a>
148-
149-
## Star History
150-
151-
[![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) | [Persian](./README_FA.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) | [Ελληνικά](./README_GR.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+
# If the above doesn't checkout the latest release, this should work:
84+
# git checkout $(git describe --tags `git rev-list --tags --max-count=1`)
85+
```
86+
87+
### Start Eliza with Gitpod
88+
89+
[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/elizaos/eliza/tree/main)
90+
91+
### Edit the .env file
92+
93+
Copy .env.example to .env and fill in the appropriate values.
94+
95+
```
96+
cp .env.example .env
97+
```
98+
99+
Note: .env is optional. If you're planning to run multiple distinct agents, you can pass secrets through the character JSON
100+
101+
### Automatically Start Eliza
102+
103+
This will run everything to set up the project and start the bot with the default character.
104+
105+
```bash
106+
sh scripts/start.sh
107+
```
108+
109+
### Edit the character file
110+
111+
1. Open `packages/core/src/defaultCharacter.ts` to modify the default character. Uncomment and edit.
112+
113+
2. To load custom characters:
114+
- Use `pnpm start --characters="path/to/your/character.json"`
115+
- Multiple character files can be loaded simultaneously
116+
3. Connect with X (Twitter)
117+
- change `"clients": []` to `"clients": ["twitter"]` in the character file to connect with X
118+
119+
### Manually Start Eliza
120+
121+
```bash
122+
pnpm i
123+
pnpm build
124+
pnpm start
125+
126+
# The project iterates fast, sometimes you need to clean the project if you are coming back to the project
127+
pnpm clean
128+
```
129+
130+
#### Additional Requirements
131+
132+
You may need to install Sharp. If you see an error when starting up, try installing it with the following command:
133+
134+
```
135+
pnpm install --include=optional sharp
136+
```
137+
138+
### Community & contact
139+
140+
- [GitHub Issues](https://github.com/elizaos/eliza/issues). Best for: bugs you encounter using Eliza, and feature proposals.
141+
- [Discord](https://discord.gg/ai16z). Best for: sharing your applications and hanging out with the community.
142+
143+
## Contributors
144+
145+
<a href="https://github.com/elizaos/eliza/graphs/contributors">
146+
<img src="https://contrib.rocks/image?repo=elizaos/eliza" />
147+
</a>
148+
149+
## Star History
150+
151+
[![Star History Chart](https://api.star-history.com/svg?repos=elizaos/eliza&type=Date)](https://star-history.com/#elizaos/eliza&Date)

README_CN.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ Eliza 是 GitHub 上排名第一的开源项目,我们正在推动下一代人
5252
所有贡献都在链上公开跟踪,并专门用于生态系统开发.
5353

5454
### ⚠️ 别忘了给大佬打赏 10%:⚠️
55+
5556
[AM84n1iLdxgVTAyENBcLdjXoyvjentTbu5Q6EpKV1PeG](https://solscan.io/account/AM84n1iLdxgVTAyENBcLdjXoyvjentTbu5Q6EpKV1PeG)
5657

5758
## 🚀 开始使用
@@ -62,7 +63,6 @@ Eliza 是 GitHub 上排名第一的开源项目,我们正在推动下一代人
6263
- [Node.js 23+](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm)
6364
- [pnpm](https://pnpm.io/installation)
6465

65-
6666
> **Windows 用户注意:** 需要安装 [WSL 2](https://learn.microsoft.com/en-us/windows/wsl/install-manual).
6767
6868
## 使用启动器(推荐)
@@ -80,6 +80,7 @@ pnpm i && pnpm build && pnpm start
8080
```bash
8181
pnpm start:client
8282
```
83+
8384
然后阅读 [文档](https://elizaos.github.io/eliza/) 以了解如何自定义您的 Eliza
8485

8586
## 手动启动 Eliza(仅推荐给知道自己在做什么的用户)

README_FA.md

-1
Original file line numberDiff line numberDiff line change
@@ -144,4 +144,3 @@ pnpm install --include=optional sharp
144144
## تاریخچه ستاره‌ها
145145

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

0 commit comments

Comments
 (0)