langchain_community.utilities.infobip.InfobipAPIWrapper

class langchain_community.utilities.infobip.InfobipAPIWrapper[source]

继承自: BaseModel

消息API的Infobip Wrapper。

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

如果输入数据无法解析为有效的模型,则引发ValidationError异常。

参数 :infobip_api_key: Optional[str] = None
参数 :infobip_base_url: Optional[str] = 'https://api.infobip.com'
run(body: str = '', to: str = '', sender: str = '', subject: str = '', channel: str = 'sms') str[source]
参数
  • body (字符串) –

  • to (字符串) –

  • sender (字符串) –

  • subject (字符串) –

  • channel (字符串) –

返回类型

字符串

使用 InfobipAPIWrapper 的示例