Dokümantasyon
Moodo AI hakkında bilmeniz gereken her şey.
Advanced Topics
Custom Skills / Plugins
Extend Moodo's capabilities with custom Python plugins:
# Example: Custom skill
class MySkill:
name = "weather_check"
description = "Check weather for a city"
def execute(self, city):
# Your custom logic
return {"temperature": 22, "condition": "sunny"}
RAG with pgvector
Enable semantic search by installing pgvector:
CREATE EXTENSION vector;
Upload documents and Moodo will automatically create embeddings for retrieval.
Approval Workflows
For Enterprise plan, configure approval chains for AI-initiated write operations. Set approval rules per model, per operation type.
Anomaly Detection Rules
Define custom rules:
- Threshold rules — Alert when a metric exceeds a value
- Trend rules — Alert on sudden changes
- Pattern rules — Alert on unusual data patterns
Multi-Agent Architecture
Enterprise plan supports multiple concurrent AI agents with different specializations. Route tasks to the most appropriate agent automatically.