Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion backend/apps/config_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
from apps.image_app import router as proxy_router
from apps.knowledge_summary_app import router as summary_router
from apps.mock_user_management_app import router as mock_user_management_router
from apps.model_managment_app import router as model_manager_router
from apps.model_management_app import router as model_manager_router
from apps.oauth_app import router as oauth_router
from apps.prompt_app import router as prompt_router
from apps.prompt_template_app import router as prompt_template_router
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion doc/docs/en/backend/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ backend/
│ ├── conversation_management_app.py # Conversation management APIs
│ ├── conversation_share_app.py # Conversation sharing APIs
│ ├── vectordatabase_app.py # Knowledge base retrieval APIs
│ ├── model_managment_app.py # Model management APIs (capacity suggestions / concurrency governance)
│ ├── model_management_app.py # Model management APIs (capacity suggestions / concurrency governance)
│ ├── voice_app.py # Voice APIs (STT/TTS WebSocket)
│ ├── file_management_app.py # File management APIs (upload / preview / signed URLs)
│ ├── remote_mcp_app.py # MCP service and API→MCP conversion APIs (/mcp)
Expand Down
2 changes: 1 addition & 1 deletion doc/docs/en/getting-started/software-architecture.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ The backend implements a clean layered architecture:
- `agent_app.py` - Agent CRUD, version management, streaming execution
- `conversation_management_app.py` - Multi-turn dialogue, history tracking
- `api_key_app.py` / `quota_app.py` - API key and capacity management
- `model_managment_app.py` - Model configuration, health checks
- `model_management_app.py` - Model configuration, health checks
- `skill_app.py` - Skill creation and management
- `knowledge_summary_app.py` - Knowledge base operations
- `remote_mcp_app.py` - Remote MCP tool management
Expand Down
2 changes: 1 addition & 1 deletion doc/docs/en/testing/backend.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ test/backend/
│ ├── test_file_management_app.py
│ ├── test_image_app.py
│ ├── test_knowledge_summary_app.py
│ ├── test_model_managment_app.py
│ ├── test_model_management_app.py
│ ├── test_northbound_app.py
│ ├── test_prompt_app.py
│ ├── test_remote_mcp_app.py
Expand Down
2 changes: 1 addition & 1 deletion doc/docs/zh/backend/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ backend/
│ ├── conversation_management_app.py # 对话管理 API
│ ├── conversation_share_app.py # 会话分享 API
│ ├── vectordatabase_app.py # 知识库检索 API
│ ├── model_managment_app.py # 模型管理 API(含容量建议/并发治理)
│ ├── model_management_app.py # 模型管理 API(含容量建议/并发治理)
│ ├── voice_app.py # 语音 API(STT/TTS WebSocket)
│ ├── file_management_app.py # 文件管理 API(上传/预览/签名URL)
│ ├── remote_mcp_app.py # MCP 服务与 API→MCP 转换 API(/mcp)
Expand Down
2 changes: 1 addition & 1 deletion doc/docs/zh/getting-started/software-architecture.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Nexent 的软件架构遵循分层设计原则,从上到下分为以下几个
- `agent_app.py` - 智能体 CRUD、版本管理、流式执行
- `conversation_management_app.py` - 多轮对话、历史追踪
- `api_key_app.py` / `quota_app.py` - API Key 与容量管理
- `model_managment_app.py` - 模型配置、健康检查
- `model_management_app.py` - 模型配置、健康检查
- `skill_app.py` - 技能创建与管理
- `knowledge_summary_app.py` - 知识库操作
- `remote_mcp_app.py` - 远程 MCP 工具管理
Expand Down
2 changes: 1 addition & 1 deletion doc/docs/zh/testing/backend.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ test/backend/
│ ├── test_file_management_app.py
│ ├── test_image_app.py
│ ├── test_knowledge_summary_app.py
│ ├── test_model_managment_app.py
│ ├── test_model_management_app.py
│ ├── test_northbound_app.py
│ ├── test_prompt_app.py
│ ├── test_remote_mcp_app.py
Expand Down
2 changes: 1 addition & 1 deletion test/backend/app/test_config_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ def refresh_api_key():
"apps.image_app": {"router": APIRouter()},
"apps.knowledge_summary_app": {"router": APIRouter()},
"apps.mock_user_management_app": {"router": APIRouter()},
"apps.model_managment_app": {"router": APIRouter()},
"apps.model_management_app": {"router": APIRouter()},
"apps.oauth_app": {"router": APIRouter()},
"apps.prompt_app": {"router": APIRouter()},
"apps.prompt_template_app": {"router": APIRouter()},
Expand Down

Large diffs are not rendered by default.