auto transpile your JS function to LLM Agent compatible
npm install @llamaindex/autotool> Auto transpile your JS function to LLM Agent compatible
First, Install the package
``shell`
npm install @llamaindex/autotool
pnpm add @llamaindex/autotool
yarn add @llamaindex/autotool
Second, Add the plugin/loader to your configuration:
`javascript
import { withNext } from "@llamaindex/autotool/next";
/* @type {import('next').NextConfig} /
const nextConfig = {};
export default withNext(nextConfig);
`
`shell`
node --import @llamaindex/autotool/node ./path/to/your/script.js
Third, add "use tool" on top of your tool file or change to .tool.ts.
`typescript
"use tool";
export function getWeather(city: string) {
// ...
}
// ...
`
Finally, export a chat handler function to the frontend using llamaindex Agent
`typescript
"use server";
// imports ...
export async function chatWithAI(message: string): Promise
const agent = new OpenAIAgent({
tools: convertTools("llamaindex"),
});
const uiStream = createStreamableUI();
agent
.chat({
stream: true,
message,
})
.then(async (responseStream) => {
return responseStream.pipeTo(
new WritableStream({
start: () => {
uiStream.append("\n");
},
write: async (message) => {
uiStream.append(message.response.delta);
},
close: () => {
uiStream.done();
},
}),
);
});
return uiStream.value;
}
``
MIT