Quickstart
A simple example to get you started
1. Configure your project
Set up a new project and install the required dependencies:
mkdir axar-demo
cd axar-demo
npm init -y
npm i @axarai/axar ts-node typescript
npx tsc --initYou need to configure your tsconfig.json file as follows for better compatibility:
{
"compilerOptions": {
"strict": true,
"module": "CommonJS",
"target": "es2020",
"esModuleInterop": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
}
}2. Write your first agent
Create a new file text-agent.ts and add the following code:
3. Run the agent
Add your OpenAI API key and run your code.
It's required to use ts-node with AXAR at this time. tsx does not support experimental decorator features fully as of yet.
It should print something like this:
Last updated