feat(model): New APP ID parameter for proxy LLM

This commit is contained in:
FangYin Cheng 2023-10-27 18:19:20 +08:00
parent fbcc91a3a8
commit b23919a6fc

View File

@ -307,6 +307,12 @@ class ProxyModelParameters(BaseModelParameters):
},
)
proxy_api_app_id: str = field(
metadata={
"help": "The app id for current proxy LLM(Just for spark proxy LLM now)."
},
)
proxy_api_key: str = field(
metadata={"tags": "privacy", "help": "The api key of current proxy LLM"},
)