feat(skills): consolidate skill-related models and update imports

This commit is contained in:
Abhimanyu Saharan
2026-02-14 19:31:32 +05:30
parent 1b4021b31d
commit d241455da6
10 changed files with 94 additions and 127 deletions

View File

@@ -14,8 +14,8 @@ from app.db import crud
from app.db.pagination import paginate
from app.db.session import get_session
from app.models.agents import Agent
from app.models.gateway_installed_skills import GatewayInstalledSkill
from app.models.gateways import Gateway
from app.models.skills import GatewayInstalledSkill
from app.schemas.common import OkResponse
from app.schemas.gateways import (
GatewayCreate,

View File

@@ -20,10 +20,8 @@ from sqlmodel import col, select
from app.api.deps import require_org_admin
from app.core.time import utcnow
from app.db.session import get_session
from app.models.gateway_installed_skills import GatewayInstalledSkill
from app.models.gateways import Gateway
from app.models.marketplace_skills import MarketplaceSkill
from app.models.skill_packs import SkillPack
from app.models.skills import GatewayInstalledSkill, MarketplaceSkill, SkillPack
from app.schemas.common import OkResponse
from app.schemas.skills_marketplace import (
MarketplaceSkillActionResponse,