@@ -84,6 +84,7 @@ Want to level up? Add `--rag-dir` and the system scans your document directory,
8484Before you start this beautiful chaos, you need to get your ducks in a fucking row:
8585
8686### 🦙 ** OLLAMA SERVER RUNNING**
87+
8788This beast needs Ollama serving the API somewhere (default: ` localhost:11434 ` ):
8889
8990``` bash
@@ -98,6 +99,7 @@ curl http://localhost:11434/api/tags
9899```
99100
100101### 🧠 ** DOWNLOAD THE FUCKING MODELS**
102+
101103You need at least these models for the default setup:
102104
103105``` bash
@@ -112,6 +114,7 @@ ollama list
112114```
113115
114116### 🌐 ** CUSTOM MODELS** (Optional)
117+
115118Want different models? Pull whatever you want and use ` --model ` parameter:
116119
117120``` bash
@@ -125,6 +128,7 @@ ollama-chat-party --model llama3.2:3b
125128```
126129
127130### 🐳 ** DOCKER** (For the Easy Install)
131+
128132If you're using the Docker method, you need Docker installed:
129133
130134``` bash
@@ -251,13 +255,13 @@ Deploy this bad boy on your local network and watch the magic happen:
251255
252256``` bash
253257# Listen on all interfaces with default port
254- ./ ollama-chat-party --listen 0.0.0.0:8000 --rag-dir ~ /shared-docs
258+ ollama-chat-party --listen 0.0.0.0:8000 --rag-dir ~ /shared-docs
255259
256260# Custom port for your network party! 🎉
257- ./ ollama-chat-party --listen 0.0.0.0:9000
261+ ollama-chat-party --listen 0.0.0.0:9000
258262
259263# Specific IP for maximum control
260- ./ ollama-chat-party --listen 192.168.1.100:8080
264+ ollama-chat-party --listen 192.168.1.100:8080
261265
262266# Now EVERYONE on your network can access:
263267# http://YOUR_IP:PORT (whatever you set!)
@@ -303,7 +307,7 @@ This beast devours:
303307
304308``` bash
305309# Load research papers
306- ./ ollama-chat-party --rag-dir ~ /research-papers --model llama3.2:70b
310+ ollama-chat-party --rag-dir ~ /research-papers --model llama3.2:70b
307311
308312# Now your whole team can:
309313# - Ask questions about papers from CLI/web
@@ -328,10 +332,10 @@ python main.py --rag-dir ~/hacker-docs --system-prompt "You are a cybersecurity
328332
329333``` bash
330334# Basic party chat with AI dungeon master
331- ./ ollama-chat-party --name " DungeonMaster" --system-prompt " You are a creative D&D dungeon master"
335+ ollama-chat-party --name " DungeonMaster" --system-prompt " You are a creative D&D dungeon master"
332336
333337# OR load up game docs for lore-accurate responses
334- ./ ollama-chat-party --rag-dir ~ /game-wikis --name " DungeonMaster"
338+ ollama-chat-party --rag-dir ~ /game-wikis --name " DungeonMaster"
335339
336340# Players can chat from browsers, DM from terminal
337341```
0 commit comments