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>
20 lines
498 B
Python
20 lines
498 B
Python
"""Dealix Service Tower — productized services, wizard, pricing, CEO cards."""
|
|
|
|
from auto_client_acquisition.service_tower.service_catalog import (
|
|
get_service_by_id,
|
|
list_service_ids,
|
|
list_tower_services,
|
|
)
|
|
from auto_client_acquisition.service_tower.service_wizard import (
|
|
recommend_service,
|
|
summarize_recommendation_ar,
|
|
)
|
|
|
|
__all__ = [
|
|
"get_service_by_id",
|
|
"list_service_ids",
|
|
"list_tower_services",
|
|
"recommend_service",
|
|
"summarize_recommendation_ar",
|
|
]
|