mirror of
https://github.com/arc53/DocsGPT.git
synced 2025-11-29 16:43:16 +00:00
* feat: Implement model registry and capabilities for multi-provider support - Added ModelRegistry to manage available models and their capabilities. - Introduced ModelProvider enum for different LLM providers. - Created ModelCapabilities dataclass to define model features. - Implemented methods to load models based on API keys and settings. - Added utility functions for model management in model_utils.py. - Updated settings.py to include provider-specific API keys. - Refactored LLM classes (Anthropic, OpenAI, Google, etc.) to utilize new model registry. - Enhanced utility functions to handle token limits and model validation. - Improved code structure and logging for better maintainability. * feat: Add model selection feature with API integration and UI component * feat: Add model selection and default model functionality in agent management * test: Update assertions and formatting in stream processing tests * refactor(llm): Standardize model identifier to model_id * fix tests --------- Co-authored-by: Alex <a@tushynski.me>
53 lines
1.2 KiB
Python
53 lines
1.2 KiB
Python
"""
|
|
Main user API routes - registers all namespace modules.
|
|
"""
|
|
|
|
from flask import Blueprint
|
|
|
|
from application.api import api
|
|
from .agents import agents_ns, agents_sharing_ns, agents_webhooks_ns
|
|
|
|
from .analytics import analytics_ns
|
|
from .attachments import attachments_ns
|
|
from .conversations import conversations_ns
|
|
from .models import models_ns
|
|
from .prompts import prompts_ns
|
|
from .sharing import sharing_ns
|
|
from .sources import sources_chunks_ns, sources_ns, sources_upload_ns
|
|
from .tools import tools_mcp_ns, tools_ns
|
|
|
|
|
|
user = Blueprint("user", __name__)
|
|
|
|
# Analytics
|
|
api.add_namespace(analytics_ns)
|
|
|
|
# Attachments
|
|
api.add_namespace(attachments_ns)
|
|
|
|
# Conversations
|
|
api.add_namespace(conversations_ns)
|
|
|
|
# Models
|
|
api.add_namespace(models_ns)
|
|
|
|
# Agents (main, sharing, webhooks)
|
|
api.add_namespace(agents_ns)
|
|
api.add_namespace(agents_sharing_ns)
|
|
api.add_namespace(agents_webhooks_ns)
|
|
|
|
# Prompts
|
|
api.add_namespace(prompts_ns)
|
|
|
|
# Sharing
|
|
api.add_namespace(sharing_ns)
|
|
|
|
# Sources (main, chunks, upload)
|
|
api.add_namespace(sources_ns)
|
|
api.add_namespace(sources_chunks_ns)
|
|
api.add_namespace(sources_upload_ns)
|
|
|
|
# Tools (main, MCP)
|
|
api.add_namespace(tools_ns)
|
|
api.add_namespace(tools_mcp_ns)
|