- Updated README.md to include new simulation scripts and configuration details for OASIS, including API retry mechanisms and environment variable settings. - Added simulation management and configuration generation services to streamline the simulation process across Twitter and Reddit platforms. - Introduced new API routes for simulation-related operations, including entity retrieval and simulation status management. - Implemented a robust retry mechanism for external API calls to improve system stability. - Enhanced task management model to include detailed progress tracking. - Added logging capabilities for action tracking during simulations. - Included new scripts for running parallel simulations and testing profile formats.
12 lines
231 B
Python
12 lines
231 B
Python
"""
|
|
API路由模块
|
|
"""
|
|
|
|
from flask import Blueprint
|
|
|
|
graph_bp = Blueprint('graph', __name__)
|
|
simulation_bp = Blueprint('simulation', __name__)
|
|
|
|
from . import graph # noqa: E402, F401
|
|
from . import simulation # noqa: E402, F401
|
|
|