Nitin Shukla
Nitin Shukla
@jacoblee93 Still encountering this error - ```NotFoundError: 404 Resource not found Troubleshooting URL: https://js.langchain.com/docs/troubleshooting/errors/MODEL_NOT_FOUND/ at Function.generate (/.../node_modules/@langchain/openai/node_modules/openai/src/error.ts:82:14) at AzureOpenAI.makeStatusError (/.../node_modules/@langchain/openai/node_modules/openai/src/core.ts:435:21) at AzureOpenAI.makeRequest (/.../node_modules/@langchain/openai/node_modules/openai/src/core.ts:499:24) at process.processTicksAndRejections (node:internal/process/task_queues:95:5) at async /.../node_modules/@langchain/openai/dist/chat_models.cjs:1558:29 at...
My issue was a trivial one. In case this is helpful to anyone else - ``` const llm = new AzureChatOpenAI({ modelName: "gpt-4o-mini", azureOpenAIApiKey: AZURE_OPENAI_API_KEY, azureOpenAIApiInstanceName: "instanceName", azureOpenAIApiDeploymentName: "chat-4o-mini", azureOpenAIApiVersion:...