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/docs/guides/local-development.md
+16
Original file line number
Diff line number
Diff line change
@@ -94,6 +94,22 @@ pnpm run test:watch # Run tests in watch mode
94
94
pnpm run lint # Lint code
95
95
```
96
96
97
+
### Direct Client Chat UI
98
+
99
+
```
100
+
# Open a terminal and Start with specific character
101
+
pnpm run dev --characters="characters/my-character.json"
102
+
```
103
+
```
104
+
# Open a 2nd terminal and start the client
105
+
pnpm start:client
106
+
```
107
+
108
+
Look for the message:
109
+
` ➜ Local: http://localhost:5173/`
110
+
Click on that link or open a browser window to that location. Once you do that you should see the chat interface connect with the system and you can start interacting with your character.
Now you're ready to start a conversation with your agent!
129
+
Open a new terminal window
130
+
131
+
```bash
132
+
pnpm start:client
133
+
```
134
+
135
+
Once the client is running, you'll see a message like this:
136
+
```
137
+
➜ Local: http://localhost:5173/
138
+
```
139
+
140
+
Simply click the link or open your browser to `http://localhost:5173/`. You'll see the chat interface connect to the system, and you can begin interacting with your character.
0 commit comments