12 lines
384 B
Python
Raw Permalink Normal View History

2023-05-15 08:51:32 +08:00
from flask import Blueprint
2023-05-15 08:51:32 +08:00
from libs.external_api import ExternalApi
bp = Blueprint("service_api", __name__, url_prefix="/v1")
2023-05-15 08:51:32 +08:00
api = ExternalApi(bp)
from . import index
2025-05-14 10:43:36 +08:00
from .app import annotation, app, audio, completion, conversation, file, message, site, workflow
2025-03-19 17:12:48 +08:00
from .dataset import dataset, document, hit_testing, metadata, segment, upload_file
from .workspace import models