跳至主要内容

RaycastAI

注意: 这是一个社区构建的集成,不提供 Raycast 官方支持。

您可以在 Raycast 环境 中使用 LangChain 的 RaycastAI 类,以利用 Langchain 的功能增强您的 Raycast 扩展。

  • RaycastAI 类仅在 Raycast 环境中可用,并且截至 2023 年 8 月,仅对 Raycast Pro 用户可用。您可以 此处 检查如何为 Raycast 创建扩展。

  • 每个 Raycast Pro 用户的速率限制约为每分钟 10 个请求。如果您超过此限制,您将收到错误消息。您可以通过将 rateLimitPerMinute 传递给 RaycastAI 构造函数来设置所需的 rpm 限制,如示例所示,因为此速率限制将来可能会发生变化。

npm install @langchain/community @langchain/core
import { RaycastAI } from "@langchain/community/llms/raycast";

import { Tool } from "@langchain/core/tools";

const model = new RaycastAI({
rateLimitPerMinute: 10, // It is 10 by default so you can omit this line
model: "<model_name>",
creativity: 0, // `creativity` is a term used by Raycast which is equivalent to `temperature` in some other LLMs
});

此页面对您有帮助吗?


您也可以在 GitHub 上留下详细的反馈 在 GitHub 上.