InfobipAPIWrapper#

class langchain_community.utilities.infobip.InfobipAPIWrapper[source]#

基础类:BaseModel

Infobip API 的封装,用于消息传递。

通过解析和验证来自关键字参数的输入数据来创建一个新模型。

如果输入数据无法验证以形成有效模型,则引发 [ValidationError][pydantic_core.ValidationError]。

self 被显式地设为仅位置参数,以允许 self 作为字段名称。

param infobip_api_key: str | None = None#
param infobip_base_url: str | None = 'https://api.infobip.com'#
run(body: str = '', to: str = '', sender: str = '', subject: str = '', channel: str = 'sms') str[来源]#
Parameters:
  • body (str)

  • to (str)

  • sender (str)

  • 主题 (str)

  • channel (str)

Return type:

字符串

使用 InfobipAPIWrapper 的示例