Spaces:
Sleeping
Sleeping
File size: 555 Bytes
0c591a7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
"""
Shared services for Instant SWOT Agent.
Contains business logic used across API and Streamlit interfaces.
"""
from src.services.swot_parser import parse_swot_text
from src.services.confidence import calculate_confidence
from src.services.workflow_store import (
WORKFLOWS,
add_activity_log,
add_metric,
update_mcp_status,
run_workflow_background,
)
__all__ = [
"parse_swot_text",
"calculate_confidence",
"WORKFLOWS",
"add_activity_log",
"add_metric",
"update_mcp_status",
"run_workflow_background",
]
|