diff --git a/templates/components/engines/typescript/agent/chat.ts b/templates/components/engines/typescript/agent/chat.ts index 87c5f08f..5def80a6 100644 --- a/templates/components/engines/typescript/agent/chat.ts +++ b/templates/components/engines/typescript/agent/chat.ts @@ -1,8 +1,8 @@ import { OpenAI, OpenAIAgent, QueryEngineTool } from "llamaindex"; import { STORAGE_CACHE_DIR } from "./constants.mjs"; import { getDataSource } from "./index"; -import ToolFactory from "./tools"; import config from "./tool_config.json"; +import ToolFactory from "./tools"; export async function createChatEngine(llm: OpenAI) { const index = await getDataSource(llm);