Skip to content

Commit 3316d1e

Browse files
committed
feat: add embeddings-ollama to cloud install script
- Added embeddings-ollama feature flag for local Ollama embedding support - Updated feature flags documentation - Added Local Embeddings line in build output - Note: server-http was already included in the script
1 parent 59d4d6d commit 3316d1e

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

install-codegraph-cloud.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ echo -e "${BLUE}🔧 Building CodeGraph with cloud features...${NC}"
5555
echo "📊 Languages: Rust, Python, JavaScript, TypeScript, Swift, C#, Ruby, PHP, Go, Java, C++"
5656
echo "🛠️ Tools: enhanced_search, semantic_intelligence, impact_analysis, pattern_detection, vector_search, graph_neighbors, graph_traverse, performance_metrics"
5757
echo "☁️ Cloud: Jina embeddings, Anthropic/x.AI/OpenAI LLM providers"
58+
echo "🏠 Local: Ollama embeddings (local models)"
5859
echo "💾 Database: SurrealDB backend"
5960
echo "🌐 Transport: STDIO, HTTP with SSE streaming, Dual mode"
6061
echo ""
@@ -85,11 +86,12 @@ echo ""
8586
# Feature flags for cloud setup:
8687
# - ai-enhanced: Core AI features (includes faiss + embeddings + codegraph-ai)
8788
# - codegraph-vector/jina: Jina embeddings provider
89+
# - embeddings-ollama: Ollama embeddings provider (local models)
8890
# - codegraph-graph/surrealdb: SurrealDB backend support
8991
# - codegraph-ai/all-cloud-providers: Anthropic, OpenAI, x.AI and OpenAI-compatible providers
9092
# - server-http: HTTP transport with SSE streaming for MCP server
9193
# - autoagents-experimental: EXPERIMENTAL AutoAgents framework for improved agentic orchestration
92-
FEATURE_FLAGS="ai-enhanced,codegraph-vector/jina,codegraph-graph/surrealdb,codegraph-ai/all-cloud-providers,server-http,autoagents-experimental"
94+
FEATURE_FLAGS="ai-enhanced,codegraph-vector/jina,embeddings-ollama,codegraph-graph/surrealdb,codegraph-ai/all-cloud-providers,server-http,autoagents-experimental"
9395
INSTALL_DIR="${CODEGRAPH_INSTALL_DIR:-$HOME/.local/bin}"
9496

9597
echo -e "${BLUE}🚀 Building CodeGraph with Cloud Features...${NC}"
@@ -121,6 +123,7 @@ if [ $? -eq 0 ]; then
121123
echo " 🔍 Graph Navigation Tools: 3 dependency analysis tools"
122124
echo " 📊 Performance Tools: 1 system monitoring tool"
123125
echo " ☁️ Cloud Embeddings: Jina reranking and embeddings"
126+
echo " 🏠 Local Embeddings: Ollama (local models)"
124127
echo " 🤖 Cloud LLM: Anthropic (Claude), OpenAI, and compatible providers"
125128
echo " 💾 Database: SurrealDB backend for scalable graph storage"
126129
echo " 🌐 MCP Transports: STDIO, HTTP (with SSE streaming), and Dual mode"

0 commit comments

Comments
 (0)