docs: add IP examples and port info to install prompts
- Show example IPs: localhost, 10.0.0.40, 192.168.1.10 - Clarify default ports (6333 for Qdrant, 11434 for Ollama) - Help users understand expected input format
This commit is contained in:
@@ -18,11 +18,13 @@ DEFAULT_USER_ID="user"
|
||||
# Get user input with defaults
|
||||
echo "Configuration (press Enter for defaults):"
|
||||
echo ""
|
||||
echo "Examples: localhost, 10.0.0.40, 192.168.1.10"
|
||||
echo ""
|
||||
|
||||
read -p "Qdrant IP [$DEFAULT_QDRANT_IP]: " QDRANT_IP
|
||||
read -p "Qdrant IP (port 6333) [$DEFAULT_QDRANT_IP]: " QDRANT_IP
|
||||
QDRANT_IP=${QDRANT_IP:-$DEFAULT_QDRANT_IP}
|
||||
|
||||
read -p "Ollama IP [$DEFAULT_OLLAMA_IP]: " OLLAMA_IP
|
||||
read -p "Ollama IP (port 11434) [$DEFAULT_OLLAMA_IP]: " OLLAMA_IP
|
||||
OLLAMA_IP=${OLLAMA_IP:-$DEFAULT_OLLAMA_IP}
|
||||
|
||||
read -p "User ID [$DEFAULT_USER_ID]: " USER_ID
|
||||
|
||||
Reference in New Issue
Block a user