mirror of
https://github.com/langbot-app/LangBot.git
synced 2026-07-24 21:36:06 +00:00
30945aafdd
* Initial plan * Add api_base_url support to WeCom API libraries and adapters Co-authored-by: RockChinQ <45992437+RockChinQ@users.noreply.github.com> * Add api_base_url parameter to OAClient and adapters for Official Account and WeCom APIs --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: RockChinQ <45992437+RockChinQ@users.noreply.github.com> Co-authored-by: Junyan Qin <rockchinq@gmail.com>
70 lines
1.9 KiB
YAML
70 lines
1.9 KiB
YAML
apiVersion: v1
|
|
kind: MessagePlatformAdapter
|
|
metadata:
|
|
name: officialaccount
|
|
label:
|
|
en_US: Official Account
|
|
zh_Hans: 微信公众号
|
|
description:
|
|
en_US: Official Account Adapter
|
|
zh_Hans: 微信公众号适配器,请查看文档了解使用方式
|
|
icon: officialaccount.png
|
|
spec:
|
|
config:
|
|
- name: token
|
|
label:
|
|
en_US: Token
|
|
zh_Hans: 令牌
|
|
type: string
|
|
required: true
|
|
default: ""
|
|
- name: EncodingAESKey
|
|
label:
|
|
en_US: EncodingAESKey
|
|
zh_Hans: 消息加解密密钥
|
|
type: string
|
|
required: true
|
|
default: ""
|
|
- name: AppID
|
|
label:
|
|
en_US: App ID
|
|
zh_Hans: 应用ID
|
|
type: string
|
|
required: true
|
|
default: ""
|
|
- name: AppSecret
|
|
label:
|
|
en_US: App Secret
|
|
zh_Hans: 应用密钥
|
|
type: string
|
|
required: true
|
|
default: ""
|
|
- name: Mode
|
|
label:
|
|
en_US: Mode
|
|
zh_Hans: 接入模式
|
|
type: string
|
|
required: true
|
|
default: "drop"
|
|
- name: LoadingMessage
|
|
label:
|
|
en_US: Loading Message
|
|
zh_Hans: 加载消息
|
|
type: string
|
|
required: true
|
|
default: "AI正在思考中,请发送任意内容获取回复。"
|
|
- name: api_base_url
|
|
label:
|
|
en_US: API Base URL
|
|
zh_Hans: API 基础 URL
|
|
description:
|
|
en_US: API Base URL, used for accessing the Official Account API. If you are deploying in an internal network environment and accessing the Official Account API through a reverse proxy, please fill in this item according to the documentation.
|
|
zh_Hans: 可选,若您部署在内网环境并通过反向代理访问微信公众号 API,可根据文档修改此项
|
|
type: string
|
|
required: false
|
|
default: "https://api.weixin.qq.com"
|
|
execution:
|
|
python:
|
|
path: ./officialaccount.py
|
|
attr: OfficialAccountAdapter
|