File size: 313 Bytes
a8b3f00
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
from flask import Blueprint

from libs.external_api import ExternalApi

bp = Blueprint("service_api", __name__, url_prefix="/v1")
api = ExternalApi(bp)

from . import index
from .app import app, audio, completion, conversation, file, message, workflow
from .dataset import dataset, document, hit_testing, segment