Merge dev into feature/obsidian - resolved conflicts keeping both Obsidian and Composio connectors

This commit is contained in:
Manoj Aggarwal 2026-01-22 11:43:18 -08:00
commit f0760c14e9
29 changed files with 6297 additions and 3110 deletions

View file

@ -55,6 +55,7 @@ class DocumentType(str, Enum):
CIRCLEBACK = "CIRCLEBACK"
OBSIDIAN_CONNECTOR = "OBSIDIAN_CONNECTOR"
NOTE = "NOTE"
COMPOSIO_CONNECTOR = "COMPOSIO_CONNECTOR" # Generic Composio integration
class SearchSourceConnectorType(str, Enum):
@ -83,6 +84,7 @@ class SearchSourceConnectorType(str, Enum):
CIRCLEBACK_CONNECTOR = "CIRCLEBACK_CONNECTOR"
OBSIDIAN_CONNECTOR = "OBSIDIAN_CONNECTOR" # Self-hosted only - Local Obsidian vault indexing
MCP_CONNECTOR = "MCP_CONNECTOR" # Model Context Protocol - User-defined API tools
COMPOSIO_CONNECTOR = "COMPOSIO_CONNECTOR" # Generic Composio integration (Google, Slack, etc.)
class LiteLLMProvider(str, Enum):