langchain_community.llms.cohere.BaseCohere

class langchain_community.llms.cohere.BaseCohere[source]

基类: Serializable

自版本 0.0.30 起已弃用:请使用 langchain_cohere.BaseCohere

Cohere 模型的基类。

参数 cohere_api_key: Optional[SecretStr] = None

Cohere API 密钥。如果没有提供,则从环境变量中读取。

约束
  • 类型 = 字符串

  • 只写 = True

  • 格式 = 密码

参数 model: Optional[str] = None

要使用的模型名称。

参数 stop: Optional[List[str]] = None
参数 streaming: bool = False

是否流式传输结果。

参数 temperature: float = 0.75

一个非负浮点数,用于调整生成中的随机程度。

参数 user_agent: str = 'langchain'

发起请求的应用程序标识符。