AI Agent Factory with Claude Code Subagents

This commit is contained in:
Cole Medin
2025-08-22 21:01:17 -05:00
parent 4e1240a0b3
commit 8d9f46ecfa
104 changed files with 24521 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
"""Semantic Search Agent Package."""
from agent import search_agent
from dependencies import AgentDependencies
from settings import Settings, load_settings
from providers import get_llm_model, get_embedding_model
__version__ = "1.0.0"
__all__ = [
"search_agent",
"AgentDependencies",
"Settings",
"load_settings",
"get_llm_model",
"get_embedding_model",
]