mirror of
https://github.com/langbot-app/LangBot.git
synced 2026-06-02 03:55:55 +00:00
42 lines
1013 B
YAML
42 lines
1013 B
YAML
apiVersion: v1
|
|
kind: MessagePlatformAdapter
|
|
metadata:
|
|
name: telegram
|
|
label:
|
|
en_US: Telegram
|
|
zh_Hans: 电报
|
|
description:
|
|
en_US: Telegram Adapter
|
|
zh_Hans: 电报适配器,请查看文档了解使用方式
|
|
icon: telegram.svg
|
|
spec:
|
|
config:
|
|
- name: token
|
|
label:
|
|
en_US: Token
|
|
zh_Hans: 令牌
|
|
type: string
|
|
required: true
|
|
default: ""
|
|
- name: markdown_card
|
|
label:
|
|
en_US: Markdown Card
|
|
zh_Hans: 是否使用 Markdown 卡片
|
|
type: boolean
|
|
required: false
|
|
default: true
|
|
- name: enable-stream-reply
|
|
label:
|
|
en_US: Enable Stream Reply Mode
|
|
zh_Hans: 启用电报流式回复模式
|
|
description:
|
|
en_US: If enabled, the bot will use the stream of telegram reply mode
|
|
zh_Hans: 如果启用,将使用电报流式方式来回复内容
|
|
type: boolean
|
|
required: true
|
|
default: false
|
|
execution:
|
|
python:
|
|
path: ./telegram.py
|
|
attr: TelegramAdapter
|