+40









lyzno1
GitHub
-LAN-
GuanMu
Davide Delbianco
NeatGuyCoding
kenwoodjw
Yongtao Huang
Yongtao Huang
Qiang Lee
李强04
autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
Asuka Minato
Matri Qi
huayaoyue6
Bowen Liang
znn
crazywoola
crazywoola
Copilot
yihong
Muke Wang
wangmuke
Wu Tianwei
quicksand
非法操作
zxhlyh
Eric Guo
Zhedong Cen
jiangbo721
github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
hjlarry
lxsummer
湛露先生
Guangdong Liu
QuantumGhost
Claude
Yessenia-d
huangzhuo1949
huangzhuo
17hz
Amy
Joel
Nite Knite
Yeuoly
Petrus Han
iamjoel
Kalo Chin
Ujjwal Maurya
Maries
5bbf685035
Signed-off-by: -LAN- <[email protected]> Signed-off-by: kenwoodjw <[email protected]> Signed-off-by: Yongtao Huang <[email protected]> Signed-off-by: yihong0618 <[email protected]> Signed-off-by: zhanluxianshen <[email protected]> Co-authored-by: -LAN- <[email protected]> Co-authored-by: GuanMu <[email protected]> Co-authored-by: Davide Delbianco <[email protected]> Co-authored-by: NeatGuyCoding <[email protected]> Co-authored-by: kenwoodjw <[email protected]> Co-authored-by: Yongtao Huang <[email protected]> Co-authored-by: Yongtao Huang <[email protected]> Co-authored-by: Qiang Lee <[email protected]> Co-authored-by: 李强04 <[email protected]> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: Asuka Minato <[email protected]> Co-authored-by: Matri Qi <[email protected]> Co-authored-by: huayaoyue6 <[email protected]> Co-authored-by: Bowen Liang <[email protected]> Co-authored-by: znn <[email protected]> Co-authored-by: crazywoola <[email protected]> Co-authored-by: crazywoola <[email protected]> Co-authored-by: Copilot <[email protected]> Co-authored-by: yihong <[email protected]> Co-authored-by: Muke Wang <[email protected]> Co-authored-by: wangmuke <[email protected]> Co-authored-by: Wu Tianwei <[email protected]> Co-authored-by: quicksand <[email protected]> Co-authored-by: 非法操作 <[email protected]> Co-authored-by: zxhlyh <[email protected]> Co-authored-by: Eric Guo <[email protected]> Co-authored-by: Zhedong Cen <[email protected]> Co-authored-by: jiangbo721 <[email protected]> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: hjlarry <[email protected]> Co-authored-by: lxsummer <[email protected]> Co-authored-by: 湛露先生 <[email protected]> Co-authored-by: Guangdong Liu <[email protected]> Co-authored-by: QuantumGhost <[email protected]> Co-authored-by: Claude <[email protected]> Co-authored-by: Yessenia-d <[email protected]> Co-authored-by: huangzhuo1949 <[email protected]> Co-authored-by: huangzhuo <[email protected]> Co-authored-by: 17hz <[email protected]> Co-authored-by: Amy <[email protected]> Co-authored-by: Joel <[email protected]> Co-authored-by: Nite Knite <[email protected]> Co-authored-by: Yeuoly <[email protected]> Co-authored-by: Petrus Han <[email protected]> Co-authored-by: iamjoel <[email protected]> Co-authored-by: Kalo Chin <[email protected]> Co-authored-by: Ujjwal Maurya <[email protected]> Co-authored-by: Maries <[email protected]>
96 lines
3.3 KiB
Python
96 lines
3.3 KiB
Python
from flask_restx import Resource
|
|
|
|
from controllers.common.fields import build_parameters_model
|
|
from controllers.service_api import service_api_ns
|
|
from controllers.service_api.app.error import AppUnavailableError
|
|
from controllers.service_api.wraps import validate_app_token
|
|
from core.app.app_config.common.parameters_mapping import get_parameters_from_feature_dict
|
|
from models.model import App, AppMode
|
|
from services.app_service import AppService
|
|
|
|
|
|
@service_api_ns.route("/parameters")
|
|
class AppParameterApi(Resource):
|
|
"""Resource for app variables."""
|
|
|
|
@service_api_ns.doc("get_app_parameters")
|
|
@service_api_ns.doc(description="Retrieve application input parameters and configuration")
|
|
@service_api_ns.doc(
|
|
responses={
|
|
200: "Parameters retrieved successfully",
|
|
401: "Unauthorized - invalid API token",
|
|
404: "Application not found",
|
|
}
|
|
)
|
|
@validate_app_token
|
|
@service_api_ns.marshal_with(build_parameters_model(service_api_ns))
|
|
def get(self, app_model: App):
|
|
"""Retrieve app parameters.
|
|
|
|
Returns the input form parameters and configuration for the application.
|
|
"""
|
|
if app_model.mode in {AppMode.ADVANCED_CHAT.value, AppMode.WORKFLOW.value}:
|
|
workflow = app_model.workflow
|
|
if workflow is None:
|
|
raise AppUnavailableError()
|
|
|
|
features_dict = workflow.features_dict
|
|
user_input_form = workflow.user_input_form(to_old_structure=True)
|
|
else:
|
|
app_model_config = app_model.app_model_config
|
|
if app_model_config is None:
|
|
raise AppUnavailableError()
|
|
|
|
features_dict = app_model_config.to_dict()
|
|
|
|
user_input_form = features_dict.get("user_input_form", [])
|
|
|
|
return get_parameters_from_feature_dict(features_dict=features_dict, user_input_form=user_input_form)
|
|
|
|
|
|
@service_api_ns.route("/meta")
|
|
class AppMetaApi(Resource):
|
|
@service_api_ns.doc("get_app_meta")
|
|
@service_api_ns.doc(description="Get application metadata")
|
|
@service_api_ns.doc(
|
|
responses={
|
|
200: "Metadata retrieved successfully",
|
|
401: "Unauthorized - invalid API token",
|
|
404: "Application not found",
|
|
}
|
|
)
|
|
@validate_app_token
|
|
def get(self, app_model: App):
|
|
"""Get app metadata.
|
|
|
|
Returns metadata about the application including configuration and settings.
|
|
"""
|
|
return AppService().get_app_meta(app_model)
|
|
|
|
|
|
@service_api_ns.route("/info")
|
|
class AppInfoApi(Resource):
|
|
@service_api_ns.doc("get_app_info")
|
|
@service_api_ns.doc(description="Get basic application information")
|
|
@service_api_ns.doc(
|
|
responses={
|
|
200: "Application info retrieved successfully",
|
|
401: "Unauthorized - invalid API token",
|
|
404: "Application not found",
|
|
}
|
|
)
|
|
@validate_app_token
|
|
def get(self, app_model: App):
|
|
"""Get app information.
|
|
|
|
Returns basic information about the application including name, description, tags, and mode.
|
|
"""
|
|
tags = [tag.name for tag in app_model.tags]
|
|
return {
|
|
"name": app_model.name,
|
|
"description": app_model.description,
|
|
"tags": tags,
|
|
"mode": app_model.mode,
|
|
"author_name": app_model.author_name,
|
|
}
|