File size: 326 Bytes
f71c799
 
 
 
 
 
 
 
 
 
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, upload_file