You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/agents.md
+22-1
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@
10
10
-[Set Docker permissions so you can run containers as non-root user](https://docs.docker.com/engine/install/linux-postinstall/)
11
11
12
12
13
-
## Run you own agent
13
+
## Run your own agent
14
14
15
15
### Get the code
16
16
@@ -38,10 +38,31 @@
38
38
```
39
39
pnpm build:agent
40
40
```
41
+
## RUN USING OLAS SDK(Provides a deployed safe with contracts)
41
42
42
43
#### Prepare the data
43
44
44
45
1. Edit the character file in agents-fun/characters/eliza.character.json and update the system, bio and lore section as per your liking.
45
46
2. Follow the steps mentioned in [Olas-sdk-docs](https://github.com/valory-xyz/docs/blob/main/docs/olas-sdk/index.md), to build a olas agent using [Olas SDK Starter](https://github.com/valory-xyz/olas-sdk-starter/blob/main/README.md) and the docker image of the agent.
46
47
47
48
For the Eliza Memeooorr agent we support agentic runs using olas-sdk. Which provides a set of tools to build and run agents, with a automatic safe account creation and management.
49
+
50
+
## RUN LOCALLY
51
+
52
+
> :warning: **Warning**
53
+
> Agent won't perform token interaction behaviour unless you deploy your own safe on base network with the required contracts.
54
+
55
+
#### Prepare the data
56
+
57
+
1. Edit the character file in agents-fun/characters/eliza.character.json and update the system, bio and lore section as per your liking.
58
+
2. Prepare the env
59
+
```
60
+
cp .env.example .env
61
+
```
62
+
63
+
64
+
3. Run the docker file built previously, with the env file:
0 commit comments