Skip to content

Commit 62db7c6

Browse files
committed
Merge branch 'develop' into feat/nillion-db
2 parents 65c6071 + bf5b72d commit 62db7c6

Some content is hidden

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

41 files changed

+1103
-359
lines changed

.env.example

+6
Original file line numberDiff line numberDiff line change
@@ -370,6 +370,12 @@ FLOW_ENDPOINT_URL= # Default: https://mainnet.onflow.org
370370
INTERNET_COMPUTER_PRIVATE_KEY=
371371
INTERNET_COMPUTER_ADDRESS=
372372

373+
374+
#Cloudflare AI Gateway
375+
CLOUDFLARE_GW_ENABLED= # Set to true to enable Cloudflare AI Gateway
376+
CLOUDFLARE_AI_ACCOUNT_ID= # Cloudflare AI Account ID - found in the Cloudflare Dashboard under AI Gateway
377+
CLOUDFLARE_AI_GATEWAY_ID= # Cloudflare AI Gateway ID - found in the Cloudflare Dashboard under AI Gateway
378+
373379
# Aptos
374380
APTOS_PRIVATE_KEY= # Aptos private key
375381
APTOS_NETWORK= # Must be one of mainnet, testnet

agent/src/index.ts

+11-12
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,6 @@ import { teeMarlinPlugin } from "@elizaos/plugin-tee-marlin";
8181
import { tonPlugin } from "@elizaos/plugin-ton";
8282
import { webSearchPlugin } from "@elizaos/plugin-web-search";
8383

84-
import { coingeckoPlugin } from "@elizaos/plugin-coingecko";
8584
import { giphyPlugin } from "@elizaos/plugin-giphy";
8685
import { letzAIPlugin } from "@elizaos/plugin-letzai";
8786
import { thirdwebPlugin } from "@elizaos/plugin-thirdweb";
@@ -704,8 +703,8 @@ export async function createAgent(
704703
goatPlugin,
705704
getSecret(character, "COINGECKO_API_KEY") ||
706705
getSecret(character, "COINGECKO_PRO_API_KEY")
707-
? coingeckoPlugin
708-
: null,
706+
? coingeckoPlugin
707+
: null,
709708
getSecret(character, "EVM_PROVIDER_URL") ? goatPlugin : null,
710709
getSecret(character, "ABSTRACT_PRIVATE_KEY")
711710
? abstractPlugin
@@ -720,8 +719,8 @@ export async function createAgent(
720719
: null,
721720
getSecret(character, "LENS_ADDRESS") &&
722721
getSecret(character, "LENS_PRIVATE_KEY")
723-
? lensPlugin
724-
: null,
722+
? lensPlugin
723+
: null,
725724
getSecret(character, "APTOS_PRIVATE_KEY") ? aptosPlugin : null,
726725
getSecret(character, "MVX_PRIVATE_KEY") ? multiversxPlugin : null,
727726
getSecret(character, "ZKSYNC_PRIVATE_KEY") ? zksyncEraPlugin : null,
@@ -763,13 +762,13 @@ export async function createAgent(
763762
getSecret(character, "AKASH_WALLET_ADDRESS")
764763
? akashPlugin
765764
: null,
766-
getSecret(character, "NILLION_NILDB_URLS") &&
767-
getSecret(character, "NILLION_NILDB_NODE_IDS") &&
768-
getSecret(character, "NILLION_NILDB_NODE_JWTS") &&
769-
getSecret(character, "NILLION_NILDB_ORG_DID") &&
770-
getSecret(character, "NILLION_NILDB_SCHEMA_ID")
771-
? nillionPlugin
772-
: null,
765+
getSecret(character, "NILLION_NILDB_URLS") &&
766+
getSecret(character, "NILLION_NILDB_NODE_IDS") &&
767+
getSecret(character, "NILLION_NILDB_NODE_JWTS") &&
768+
getSecret(character, "NILLION_NILDB_ORG_DID") &&
769+
getSecret(character, "NILLION_NILDB_SCHEMA_ID")
770+
? nillionPlugin
771+
: null,
773772
].filter(Boolean),
774773
providers: [],
775774
actions: [],

docs/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ To create new tests, add a `.test.ts` file adjacent to the code you're testing.
176176

177177
## Docs Updates
178178

179-
Please make sure to vetify if the documentation provided is correct. In order to do so, please run the docs service.
179+
Please make sure to verify if the documentation provided is correct. In order to do so, please run the docs service.
180180

181181
```console
182182
docker compose -f docker-compose-docs.yaml up --build

docs/README_PT.md

+191
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,191 @@
1+
# Eliza - framework de simulação Multi-agentes
2+
3+
# https://github.com/elizaOS/eliza
4+
5+
# Visite https://eliza.builders para suporte
6+
7+
## 🌍 README Traduções
8+
9+
[中文说明](README_CN.md) | [Deutsch](README_DE.md) | [Français](README_FR.md) | [ไทย](README_TH.md) | [Español](README_ES.md) | [Português](README_PT.md)
10+
11+
# dev branch
12+
13+
<img src="static/img/eliza_banner.jpg" alt="Eliza Banner" width="100%" />
14+
15+
_Como visto dando funcionamento em [@DegenSpartanAI](https://x.com/degenspartanai) e [@MarcAIndreessen](https://x.com/pmairca)_
16+
17+
- Framework Multi-agente de simulação
18+
- Adicione quantos personagens únicos quiser com o [characterfile](https://github.com/lalalune/characterfile/)
19+
- Conectores completos para Discord e Twitter, com suporte para canais de voz no Discord
20+
- Memória RAG completa para conversas e documentos
21+
- Pode ler links e PDFs, transcrever áudios e vídeos, resumir conversas e muito mais
22+
- Altamente extensível - crie suas próprias ações e clientes para ampliar as capacidades do Eliza
23+
- Suporte para modelos de código aberto e locais (configuração padrão com Nous Hermes Llama 3.1B)
24+
- Suporte ao OpenAI para inferência em nuvem em dispositivos com configurações leves
25+
- Modo "Perguntar ao Claude" para chamadas a Claude em consultas mais complexas
26+
- 100% Typescript
27+
28+
# Iniciando
29+
30+
**Pré-requisitos (OBRIGATÓRIO):**
31+
32+
- [Node.js 23+](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm)
33+
- [pnpm](https://pnpm.io/installation)
34+
35+
### Edite o arquivo .env
36+
37+
- Copie .env.example para .env e preencha com valores apropriados
38+
- Edite as variáveis de ambiente do TWITTER para adicionar o nome de usuário e a senha do seu bot
39+
40+
### Edite o arquivo de personagem (character file)
41+
42+
- Verifique o arquivo `src/core/defaultCharacter.ts` - você pode modificá-lo
43+
- Você também pode carregar personagens com o comando `pnpm start --characters="path/to/your/character.json"` e executar vários bots ao mesmo tempo.
44+
45+
Após configurar o arquivo .env e o arquivo de personagem (character file), você pode iniciar o bot com o seguinte comando:
46+
47+
```
48+
pnpm i
49+
pnpm start
50+
```
51+
52+
# Personalizando Eliza
53+
54+
### Adicionando ações personalizadas
55+
56+
Para evitar conflitos no diretório principal, recomendamos adicionar ações personalizadas a um diretório chamado `custom_actions` e, em seguida, incluí-las no arquivo `elizaConfig.yaml`. Consulte o arquivo `elizaConfig.example.yaml` para um exemplo.
57+
58+
## Rodando com diferentes modelos
59+
60+
### Rode com Llama
61+
62+
Você pode executar modelos Llama 70B ou 405B configurando a variável de ambiente `XAI_MODEL` para `meta-llama/Meta-Llama-3.1-70B-Instruct-Turbo` ou `meta-llama/Meta-Llama-3.1-405B-Instruct`
63+
64+
### Rode com Grok
65+
66+
Você pode executar modelos Grok configurando a variável de ambiente `XAI_MODEL` para `grok-beta`.
67+
68+
### Rode com OpenAI
69+
70+
Você pode executar modelos OpenAI configurando a variável de ambiente para `gpt-4-mini` or `gpt-4o`
71+
72+
## Requisitos Adicionais
73+
74+
Você pode precisar instalar o Sharp. Se aparecer um erro ao iniciar, tente instalá-lo com o seguinte comando:
75+
76+
```
77+
pnpm install --include=optional sharp
78+
```
79+
80+
# Configuração do Ambiente
81+
82+
Você precisará adicionar variáveis de ambiente ao seu arquivo .env para conectar a diversas plataformas:
83+
84+
```
85+
# Variaveis de ambiente obrigatorias
86+
DISCORD_APPLICATION_ID=
87+
DISCORD_API_TOKEN= # Bot token
88+
OPENAI_API_KEY=sk-* # OpenAI API key, começando com sk-
89+
ELEVENLABS_XI_API_KEY= # API key da elevenlabs
90+
91+
# Configuracoes ELEVENLABS
92+
ELEVENLABS_MODEL_ID=eleven_multilingual_v2
93+
ELEVENLABS_VOICE_ID=21m00Tcm4TlvDq8ikWAM
94+
ELEVENLABS_VOICE_STABILITY=0.5
95+
ELEVENLABS_VOICE_SIMILARITY_BOOST=0.9
96+
ELEVENLABS_VOICE_STYLE=0.66
97+
ELEVENLABS_VOICE_USE_SPEAKER_BOOST=false
98+
ELEVENLABS_OPTIMIZE_STREAMING_LATENCY=4
99+
ELEVENLABS_OUTPUT_FORMAT=pcm_16000
100+
101+
TWITTER_DRY_RUN=false
102+
TWITTER_USERNAME= # Usuário da conta
103+
TWITTER_PASSWORD= # Senha da conta
104+
TWITTER_EMAIL= # Email da conta
105+
106+
X_SERVER_URL=
107+
XAI_API_KEY=
108+
XAI_MODEL=
109+
110+
111+
# Para perguntas ao Claude
112+
ANTHROPIC_API_KEY=
113+
114+
WALLET_SECRET_KEY=EXAMPLE_WALLET_SECRET_KEY
115+
WALLET_PUBLIC_KEY=EXAMPLE_WALLET_PUBLIC_KEY
116+
117+
BIRDEYE_API_KEY=
118+
119+
SOL_ADDRESS=So11111111111111111111111111111111111111112
120+
SLIPPAGE=1
121+
RPC_URL=https://api.mainnet-beta.solana.com
122+
HELIUS_API_KEY=
123+
124+
125+
## Telegram
126+
TELEGRAM_BOT_TOKEN=
127+
128+
TOGETHER_API_KEY=
129+
```
130+
131+
# Configuração de Inferência Local
132+
133+
### Configuração CUDA
134+
135+
Se você tiver uma GPU NVIDIA, pode instalar o CUDA para acelerar significativamente a inferência local.
136+
137+
```
138+
pnpm install
139+
npx --no node-llama-cpp source download --gpu cuda
140+
```
141+
142+
Certifique-se de que você instalou o CUDA Toolkit, incluindo o cuDNN e cuBLAS.
143+
144+
### Rodando localmente
145+
146+
Add XAI_MODEL e defina-o para uma das opções mencionadas em [Run with
147+
Llama](#run-with-llama) - você pode deixar X_SERVER_URL e XAI_API_KEY em branco,
148+
pois o modelo será baixado do Hugging Face e consultado localmente.
149+
150+
# Clientes
151+
152+
## Discord Bot
153+
154+
Para ajuda com a configuração do seu bot no Discord, consulte aqui: https://discordjs.guide/preparations/setting-up-a-bot-application.html
155+
156+
# Desenvolvimento
157+
158+
## Testando
159+
160+
Para executar a suíte de testes:
161+
162+
```bash
163+
pnpm test # Executar os testes uma vez
164+
pnpm test:watch # Executar os testes no modo de observação/monitoramento (watch mode)
165+
```
166+
167+
Para testes específicos de banco de dados:
168+
169+
```bash
170+
pnpm test:sqlite # Rode testes com SQLite
171+
pnpm test:sqljs # Rode testes com SQL.js
172+
```
173+
174+
Os testes são escritos usando o Jest e podem ser encontrados nos arquivos. O ambiente de teste está configurado para:
175+
176+
- Carregar variáveis de ambiente do arquivo `.env.test`
177+
- Usar um tempo limite de 2 minutos para testes de longa duração
178+
- Suportar módulos ESM
179+
- Executar os testes em sequência (--runInBand)
180+
181+
Para criar novos testes, adicione um arquivo `.test.ts` ao lado do código que você está testando.
182+
183+
## Atualizações da Documentação
184+
185+
Por favor, verifique se a documentação fornecida está correta. Para fazer isso, execute o serviço de documentação (docs) abaixo.
186+
187+
```console
188+
docker compose -f docker-compose-docs.yaml up --build
189+
```
190+
191+
O servidor do Docusaurus será iniciado e você poderá verificar a documentação localmente em https://localhost:3000/eliza.

docs/api/classes/DatabaseAdapter.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ Retrieves memories based on the specified parameters.
194194

195195
**params**
196196

197-
An object containing parameters for the memory retrieval.
197+
An object containing parameters for memory retrieval.
198198

199199
**params.agentId**: \`$\{string\}-$\{string\}-$\{string\}-$\{string\}-$\{string\}\`
200200

@@ -300,7 +300,7 @@ An object containing parameters for the embedding retrieval.
300300

301301
`Promise`\<`object`[]\>
302302

303-
A Promise that resolves to an array of objects containing embeddings and levenshtein scores.
303+
A Promise that resolves to an array of objects containing embeddings and Levenshtein scores.
304304

305305
#### Implementation of
306306

docs/api/functions/composeContext.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ The parameters for composing the context.
2020

2121
**params.state**: [`State`](../interfaces/State.md)
2222

23-
The state object containing values to replace the placeholders in the template.
23+
The state object contains values to replace the placeholders in the template.
2424

2525
**params.template**: `string` | `Function`
2626

docs/api/functions/configureSettings.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Configures environment settings for browser usage
1010

1111
**settings**: `Settings`
1212

13-
Object containing environment variables
13+
The object containing environment variables
1414

1515
## Returns
1616

docs/api/functions/splitChunks.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Number of characters to overlap between chunks (default: 100)
2424

2525
`Promise`\<`string`[]\>
2626

27-
Promise resolving to array of text chunks with bleed sections
27+
Promise resolving to an array of text chunks with bleed sections
2828

2929
## Defined in
3030

docs/api/interfaces/ActionExample.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Interface: ActionExample
44

5-
Example content with associated user for demonstration purposes
5+
Example content with the associated user for demonstration purposes
66

77
## Properties
88

docs/api/interfaces/ConversationExample.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Example conversation content with user ID
1010

1111
> **userId**: \`$\{string\}-$\{string\}-$\{string\}-$\{string\}-$\{string\}\`
1212
13-
UUID of user in conversation
13+
UUID of the user in conversation
1414

1515
#### Defined in
1616

docs/docs/core/actions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ const continueAction: Action = {
179179
name: "CONTINUE",
180180
similes: ["ELABORATE", "KEEP_TALKING"],
181181
description:
182-
"Used when the message requires a follow-up. Don't use when conversation is finished.",
182+
"Used when the message requires a follow-up. Don't use when the conversation is finished.",
183183
validate: async (runtime, message) => {
184184
// Validation logic
185185
return true;

docs/docs/core/characterfile.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ Array used for Retrieval Augmented Generation (RAG), containing facts or referen
140140

141141
#### `messageExamples`
142142

143-
Sample conversations for establishing interaction patterns, helps establish the character's conversational style.
143+
Sample conversations for establishing interaction patterns, help establish the character's conversational style.
144144

145145
```json
146146
"messageExamples": [
@@ -191,7 +191,7 @@ The `style` object defines behavior patterns across contexts:
191191
### Adjectives Array
192192

193193
- Words that describe the character's traits and personality
194-
- Used for generating responses with consistent tone
194+
- Used for generating responses with a consistent tone
195195
- Can be used in "Mad Libs" style content generation
196196

197197
### Settings Configuration

docs/docs/core/evaluators.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ interface Objective {
119119
### Handler Implementation
120120

121121
- Use runtime services appropriately
122-
- Store results in correct memory manager
122+
- Store results in the correct memory manager
123123
- Handle errors gracefully
124124
- Maintain state consistency
125125

docs/docs/faq.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,4 +68,4 @@ There are several ways to contribute to the Eliza project:
6868

6969
- **Participate in community discussions**: Share your memecoin insights, propose new ideas, and engage with other community members.
7070
- **Contribute to the development of the Eliza platform**: https://github.com/orgs/elizaos/projects/1/views/3
71-
- **Help build the Eliza ecosystem**: Create applicatoins / tools, resources, and memes. Give feedback, and spread the word
71+
- **Help build the Eliza ecosystem**: Create applications / tools, resources, and memes. Give feedback, and spread the word

0 commit comments

Comments
 (0)