Development Documents
Installation
4min
aonweb` is a library for AI Agents development, providing simple and easy-to-use APIs to integrate AI functionality into your Agents.
This guide will introduce you to AI Agents development using the aonweb library.
First, make sure you have installed the aonweb library:
npm install aonweb --save
import { AI, AIOptions, User } from 'aonweb'
Use AIOptions to create a configuration, then initialize the AI instance:
const ai_options = new AIOptions({
appId: REPLACE_APP_ID //replace app id
})
const aonweb = new AI(ai_options)
Updated 08 Jan 2025


Did this page help you?