Error “[object Object]“ when using LangChain‘s AzureChatOpenAI in Node.js

**题意:**在Node.js中使用LangChain库的AzureChatOpenAI功能时遇到错误"Error '[object Object]'"

问题背景:

I'm attempting to use LangChain's AzureChatOpenAI with the gpt-35-turbo-16k model in a Node.js application to create an OpenAI Function Agent. I've properly set up the required environment variables for Azure OpenAI setup. However, I'm encountering an error, which is not very descriptive, when trying to run the function.

在Node.js应用程序中尝试使用LangChain的AzureChatOpenAI与gpt-35-turbo-16k模型来创建一个OpenAI Function Agent时,已经正确地设置了Azure OpenAI所需的环境变量,但在尝试运行该函数时遇到了一个不太具体的错误

Here's the relevant code snippet: 下面是相关的代码片段:

cs 复制代码
import { pull } from "langchain/hub";
import type { ChatPromptTemplate } from "@langchain/core/prompts";
import { AzureChatOpenAI } from "@langchain/azure-openai";

const model = new AzureChatOpenAI({
  azureOpenAIApiDeploymentName: "gpt-35-turbo-16k",
  azureOpenAIApiVersion: "2024-03-01-preview",
  modelName: "gpt-35-turbo-16k",
  temperature: 0,
  maxRetries: 1,
});

export async function ChatWithFunctionAgent(question: string) {
  try {
    // Get the prompt to use - you can modify this!
    // If you want to see the prompt in full, you can at:
    // https://smith.langchain.com/hub/hwchase17/openai-functions-agent
    const prompt = await pull<ChatPromptTemplate>(
      "hwchase17/openai-functions-agent"
    );
    const agent = await createOpenAIFunctionsAgent({
      llm: model,
      tools: [],
      prompt,
    });
    const agentExecutor = new AgentExecutor({
      agent,
      tools: [],
    });
    const result = await agentExecutor.invoke({
      input: "what is LangChain?",
    });
    console.log(result);
    return result;
  } catch (error) {
    console.log(error);
  }
}

Error: 错误信息:

cs 复制代码
Http function processed request for url "http://localhost:7071/api/chat"
[1] [2024-04-04T05:27:52.461Z] Error: [object Object]
[1] [2024-04-04T05:27:52.461Z]     at /home/ujwal/code/roc-next/azure-func/node_modules/@langchain/core/dist/utils/async_caller.cjs:98:23
[1] [2024-04-04T05:27:52.461Z]     at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
[2024-04-04T05:27:52.461Z]     at async RetryOperation._fn (/home/ujwal/code/roc-next/azure-func/node_modules/p-retry/index.js:50:12) {
[1] [2024-04-04T05:27:52.461Z]   attemptNumber: 2,
[1] [2024-04-04T05:27:52.461Z]   retriesLeft: 0
[1] [2024-04-04T05:27:52.461Z] }

What I've tried: 我已经尝试做的事情:

  • I've already double-checked to ensure all the required environment variables are set, including those needed for authentication with Azure.

我已经反复检查过了,确保所有必需的环境变量都已设置,包括与Azure进行身份验证所需的环境变量。

  • I've manually invoked the model, that is working fine, so no issues with Azure credentials or connection.

我已经手动调用了模型,它工作正常,所以Azure的凭据或连接没有问题。

Expected behavior: 期望结果:

  • AzureChatOpenAI to work with langchain OpenAIFunction Agent

AzureChatOpenAIlangchainOpenAIFunctionAgent协同工作

Any help would be greatly appreciated! 任何帮助都将不胜感激!

问题解决:

I figured out why this issue was occuring, if the tools array is empty, the AzureOpenAI API throws an error. To fix this, you need to have atleast one tool in the tools array, you can refer to Defining custom tools | 🦜️🔗 Langchain to create custom tools. You also need to make sure that the name of the tool does not contain any spaces.

我弄清楚了这个问题发生的原因,如果tools数组为空,AzureOpenAI API会抛出一个错误。为了解决这个问题,你需要在tools数组中至少包含一个工具。你可以参考"Defining custom tools | 🦜️🔗 Langchain"来创建自定义工具。此外,你还需要确保工具的名称中不包含任何空格。

cs 复制代码
import { DynamicTool } from "@langchain/core/tools";

const tools = [
  new DynamicTool({
    name: "FOO",
    description:
      "call this to get the value of foo. input should be an empty string.",
    func: async () => "baz",
  })
]
Hope this helps.
相关推荐
枫叶kx2 小时前
1Panel运行的.net程序无法读取系统字体(因为使用了docker)
c#
远方16095 小时前
14-Oracle 23ai Vector Search 向量索引和混合索引-实操
数据库·ai·oracle
军训猫猫头7 小时前
96.如何使用C#实现串口发送? C#例子
开发语言·c#
何双新7 小时前
第23讲、Odoo18 邮件系统整体架构
ai·架构
ai大师7 小时前
(附代码及图示)Multi-Query 多查询策略详解
python·langchain·中转api·apikey·中转apikey·免费apikey·claude4
阿部多瑞 ABU8 小时前
主流大语言模型安全性测试(三):阿拉伯语越狱提示词下的表现与分析
人工智能·安全·ai·语言模型·安全性测试
不爱写代码的玉子8 小时前
HALCON透视矩阵
人工智能·深度学习·线性代数·算法·计算机视觉·矩阵·c#
孔令飞9 小时前
Kubernetes 节点自动伸缩(Cluster Autoscaler)原理与实践
ai·云原生·容器·golang·kubernetes
开开心心就好11 小时前
高效Excel合并拆分软件
开发语言·javascript·c#·ocr·排序算法·excel·最小二乘法
爱喝喜茶爱吃烤冷面的小黑黑12 小时前
小黑一层层削苹果皮式大模型应用探索:langchain中智能体思考和执行工具的demo
python·langchain·代理模式