docs: sanitize IP addresses in README
- Replace hardcoded IPs with placeholders - QDRANT_URL: 10.0.0.40 → <QDRANT_IP> - OLLAMA_URL: 10.0.0.10 → <OLLAMA_IP> - USER_ID: rob → <USER_ID> - Update verification example command
This commit is contained in:
10
README.md
10
README.md
@@ -75,8 +75,8 @@ sudo systemctl enable --now mem-qdrant-watcher
|
|||||||
# Check service
|
# Check service
|
||||||
sudo systemctl status mem-qdrant-watcher
|
sudo systemctl status mem-qdrant-watcher
|
||||||
|
|
||||||
# Check collection
|
# Check collection (replace <QDRANT_IP> with your Qdrant IP)
|
||||||
curl -s http://10.0.0.40:6333/collections/memories_tr | jq '.result.points_count'
|
curl -s http://<QDRANT_IP>:6333/collections/memories_tr | jq '.result.points_count'
|
||||||
```
|
```
|
||||||
|
|
||||||
---
|
---
|
||||||
@@ -97,10 +97,10 @@ Edit `config.json` or set environment variables:
|
|||||||
|
|
||||||
| Variable | Default | Description |
|
| Variable | Default | Description |
|
||||||
|----------|---------|-------------|
|
|----------|---------|-------------|
|
||||||
| `QDRANT_URL` | `http://10.0.0.40:6333` | Qdrant endpoint |
|
| `QDRANT_URL` | `http://<QDRANT_IP>:6333` | Qdrant endpoint |
|
||||||
| `OLLAMA_URL` | `http://10.0.0.10:11434` | Ollama endpoint |
|
| `OLLAMA_URL` | `http://<OLLAMA_IP>:11434` | Ollama endpoint |
|
||||||
| `EMBEDDING_MODEL` | `snowflake-arctic-embed2` | Embedding model |
|
| `EMBEDDING_MODEL` | `snowflake-arctic-embed2` | Embedding model |
|
||||||
| `USER_ID` | `rob` | User identifier |
|
| `USER_ID` | `<USER_ID>` | User identifier |
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user