mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2026-06-17 23:09:35 +00:00
- API routers, ACA modules, integrations (draft operators) - Docs, landing pages, scripts (launch readiness, scorecard) - Tests and CI workflow updates for Dealix Co-authored-by: Cursor <cursoragent@cursor.com>
17 lines
383 B
Python
17 lines
383 B
Python
"""Connector catalog HTTP."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import Any
|
|
|
|
from fastapi import APIRouter
|
|
|
|
from auto_client_acquisition.connectors.connector_catalog import build_connector_catalog
|
|
|
|
router = APIRouter(prefix="/api/v1/connectors", tags=["connectors"])
|
|
|
|
|
|
@router.get("/catalog")
|
|
async def catalog() -> dict[str, Any]:
|
|
return build_connector_catalog()
|