You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Yöntem 1: curl ile (önerilen)
curl -fsSL https://raw.githubusercontent.com/nexsusagent-coder/SENTIENT_CORE/main/install.sh | bash
# Yöntem 2: git clone + install
git clone https://github.com/nexsusagent-coder/SENTIENT_CORE.git
cd SENTIENT_CORE
./install.sh
Kurulum Adımları (OpenClaw Standardı)
1. ⚠️ Yasal Uyari (Yes/No) → Kullanım koşulları
2. 🔍 Sistem Tespiti → OS, RAM, GPU, CPU
3. 📦 Kurulum Modu → Quick / Full / Custom
4. 🧠 LLM Provider Seçimi → Lokal (ücretsiz) veya API
5. 🧩 Ek Modüller → Voice, Browser, Desktop, Channels
6. 🐳 Docker Servisleri → PostgreSQL, Redis, Qdrant...
7. ⚙️ Yapılandırma (.env) → Otomatik oluşturma
8. 🔨 Derleme → cargo build --release
9. ✅ Doğrulama → health-check
Hızlı Kurulum (Sorusuz)
# Tüm soruları atla, varsayılanlarla kur
./install.sh --yes --quick
# Tam kurulum (tüm 93 crate + Docker)
./install.sh --yes --full
# Özel dizine kur
./install.sh --dir /opt/sentient
# Kaldır
./install.sh --uninstall
⚡ Hızlı Başlangıç
# İnteraktif sohbet
sentient chat
# Tek soru sor
sentient ask "Rust'ta async nasıl çalışır?"# Sesli asistan (JARVIS modu)
sentient voice
# Web API sunucusu
sentient gateway
# → http://localhost:8080# Web dashboard
sentient dashboard
# → http://localhost:8080/dashboard# Sistem durumu
sentient status
# İlk kurulum sihirbazı
sentient init
# Sağlık kontrolü
sentient doctor
🧠 LLM Hub
SENTIENT OS dünyanın en kapsamlı LLM hub'ına sahiptir. 57+ provider, 245+ model desteği.
Doğrudan AI Şirketleri
Provider
Modeller
Fiyat
Ücretsiz
OpenAI
GPT-4o, o3, o4-mini (17 model)
$$
❌
Anthropic
Claude 4, 3.5, 3, 2, 1 (12 model)
$$
❌
Google
Gemini 2.5, 2.0, 1.5, Gemma 3 (14 model)
$
✅ Flash ücretsiz
Mistral 🇫🇷
Large 2, Small 3.1, Codestral, Pixtral (11 model)
$
✅ Bazı modeller
DeepSeek 🇨🇳
V3, R1, R2, V4, Coder (6 model)
EN UCUZ
✅ Çoğu ücretsiz
xAI
Grok 3, 3 Mini, Grok 4 (4 model)
$$
✅ Mini ücretsiz
Cohere
Command A, R+, Aya Exa (6 model)
$
✅
Perplexity
Sonar, Deep Research (4 model)
$$
❌
AI Gateway / Router (11 Provider)
Gateway
İşlev
Ücretsiz Tier
OpenRouter
300+ model marketplace
✅ Bazı modeller
Unify AI
ML-based akıllı routing (quality/cost/speed)
✅ $5 kredi
Portkey
Enterprise gateway, failover, caching
✅ 10K req/mo
Helicone
AI observability, cost tracking
✅ 50K req/mo
NotDiamond
ML ile prompt bazlı model seçimi
✅
AI/ML API
100+ model, doğrudan erişimden %40 ucuz
✅ 100 req/gün
Glama
Multi-model gateway + MCP desteği
✅
Requesty
LLM router, A/B testing
✅
LiteLLM
100+ provider, self-hosted proxy
Açık kaynak
Cloudflare Workers AI
Edge inference
✅
Chutes
Tamamen ücretsiz inference!
✅ Tamamen
Lokal / Açık Kaynak (Ücretsiz!)
Model
VRAM
Ollama ID
Özellik
Llama 4 Scout
48GB
llama4:scout
10M context, MoE 109B, Vision
Llama 4 Maverick
96GB
llama4:maverick
1M context, MoE 400B, Vision
Qwen3 30B-A3B MoE
4GB!
qwen3:30b-a3b
3B aktif parametre, Reasoning
DeepSeek R2
96GB
deepseek-r2
Reasoning + Vision
Gemma 3 27B
16GB
gemma3:27b
Vision, 128K context
Phi-4 14B
8GB
phi4:14b
MIT lisans, Code
Mistral Small 3.1
16GB
mistral-small3.1:24b
Vision + Tools
Gemma 3 4B
4GB
gemma3:4b
Vision, en hafif
DeepSeek R1 Distill 8B
4GB
deepseek-r1:8b
En küçük reasoning
Qwen 2.5 Coder 14B
8GB
qwen2.5-coder:14b
Code specialist
Çin AI Ekosistemi
Provider
Modeller
Qwen (Alibaba)
Qwen3, QwQ, QVQ, Qwen4 Max
Baidu ERNIE
ERNIE 4.0, 3.5
Zhipu GLM
GLM-4 Plus, Flash
Moonshot (Kimi)
V1 128K
StepFun
Step-2, Step-1V
ByteDance
Doubao 1.5 Pro
Diğer Bölgesel AI
Bölge
Provider
Modeller
🇷🇺 Rusya
GigaChat
Pro, Max
🇰🇷 Kore
Upstage
Solar Pro 2
🇪🇺 Avrupa
Aleph Alpha
Luminous, Pharia
🇮🇳 Hindistan
Sarvam AI
Sarvam-M
🇯🇵 Japonya
Rinna, CyberAgent
CALM 3
🇦🇪 Arap
InceptionAI
JAIS 30B
Rust ile Kullanım
use sentient_llm::{LlmHub,ChatRequest,Message};#[tokio::main]asyncfnmain(){// Tüm provider'ları otomatik algıla (.env dosyasından)let hub = LlmHub::from_env().unwrap();// Sohbetlet response = hub.chat(ChatRequest{model:"gpt-4o".into(),messages:vec![Message::user("Merhaba!")],
..Default::default()}).await.unwrap();println!("{}", response.choices[0].message.content.as_text().unwrap());}
# Tüm servisleri başlat
docker-compose up -d
# Sadece temel servisler
./scripts/start.sh --minimal
# Servisleri durdur
./scripts/stop.sh
🛠️ Geliştirme
# Tüm crate'leri derle
cargo build --release
# Sadece CLI binary
cargo build --release --bin sentient
# Test
cargo test --workspace
# Clippy
cargo clippy --workspace
# Format
cargo fmt
# Belirli crate derle
cargo build --release -p sentient_llm
cargo build --release -p sentient_voice
Makefile Komutları
make build # Derle
make run # REPL başlat
make test# Test çalıştır
make docker-up # Docker servisleri başlat
make clean # Temizle
make skills # Skill library güncelle
make help# Tüm komutlar