feat(models): implement model routing and management pages with dynamic imports

This commit is contained in:
Abhimanyu Saharan
2026-02-12 00:16:18 +05:30
parent d5067e443b
commit dc7906a224
52 changed files with 6470 additions and 10 deletions

View File

@@ -13,6 +13,16 @@ from app.schemas.board_onboarding import (
)
from app.schemas.boards import BoardCreate, BoardRead, BoardUpdate
from app.schemas.gateways import GatewayCreate, GatewayRead, GatewayUpdate
from app.schemas.llm_models import (
GatewayModelPullResult,
GatewayModelSyncResult,
LlmModelCreate,
LlmModelRead,
LlmModelUpdate,
LlmProviderAuthCreate,
LlmProviderAuthRead,
LlmProviderAuthUpdate,
)
from app.schemas.metrics import DashboardMetrics
from app.schemas.organizations import (
OrganizationActiveUpdate,
@@ -57,6 +67,14 @@ __all__ = [
"GatewayRead",
"GatewayUpdate",
"DashboardMetrics",
"GatewayModelPullResult",
"GatewayModelSyncResult",
"LlmModelCreate",
"LlmModelRead",
"LlmModelUpdate",
"LlmProviderAuthCreate",
"LlmProviderAuthRead",
"LlmProviderAuthUpdate",
"OrganizationActiveUpdate",
"OrganizationCreate",
"OrganizationInviteAccept",