You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

__init__.py 384B

1234567891011
  1. from flask import Blueprint
  2. from libs.external_api import ExternalApi
  3. bp = Blueprint("service_api", __name__, url_prefix="/v1")
  4. api = ExternalApi(bp)
  5. from . import index
  6. from .app import annotation, app, audio, completion, conversation, file, message, site, workflow
  7. from .dataset import dataset, document, hit_testing, metadata, segment, upload_file
  8. from .workspace import models