Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- export CIPHER_LOG_LEVEL=debug
- # Cipher LLM
- export OLLAMA_BASE_URL="http://localhost:11434"
- # Cipher Cache Backend
- export STORAGE_CACHE_TYPE=redis # redis, in-memory
- export STORAGE_CACHE_HOST=********* # Redis server hostname
- export STORAGE_CACHE_PORT=6380 # Redis server port
- export STORAGE_CACHE_PASSWORD= # Redis authentication (optional)
- export STORAGE_CACHE_DATABASE=0 # Redis database number (0-15)
- # Cipher Database Backend
- export STORAGE_DATABASE_TYPE=postgres
- export STORAGE_DATABASE_HOST="******"
- export STORAGE_DATABASE_PORT="5430"
- export STORAGE_DATABASE_NAME="cipher_db"
- export STORAGE_DATABASE_USER="postgres"
- export STORAGE_DATABASE_PASSWORD="**************************"
- export STORAGE_DATABASE_SSL="false"
- # Cipher Vector Storage
- export VECTOR_STORE_TYPE=milvus
- export VECTOR_STORE_HOST=**********
- export VECTOR_STORE_PORT=19530
- export VECTOR_STORE_COLLECTION=knowledge_memory
- export VECTOR_STORE_DIMENSION=1536 # Embedding dimensions
- export REFLECTION_VECTOR_STORE_COLLECTION=reflection_memory # Reflection collection
- export DISABLE_REFLECTION_MEMORY=false # Enable/disable reflection memory
- # Cipher Memory Search Configuration
- export SEARCH_MEMORY_TYPE=both # knowledge, reflection, both
- # Cipher Knowledge Graph Configuration
- export KNOWLEDGE_GRAPH_ENABLED=true # Enable knowledge graph features
- export KNOWLEDGE_GRAPH_TYPE=neo4j # neo4j, in-memory
- export KNOWLEDGE_GRAPH_HOST=******** # Neo4j hostname
- export KNOWLEDGE_GRAPH_PORT=7687 # Neo4j bolt port
- export KNOWLEDGE_GRAPH_USERNAME=neo4j # Neo4j username
- export KNOWLEDGE_GRAPH_PASSWORD=**************
Advertisement
Add Comment
Please, Sign In to add comment