@ardent-ai/sdk
v0.0.3
Published
TypeScript SDK for building AI agents on the Ardent platform
Downloads
7
Readme
Ardent AI SDK
Alpha Release - This SDK is currently in alpha. APIs may change before stable release.
The official TypeScript SDK for building AI agents on the Ardent platform.
Installation
npm install @ardent-ai/sdkBasic Usage
import { Agent, z } from '@ardent-ai/sdk';
const agent = new Agent({
name: 'my-agent',
model: 'claude-3-5-sonnet-latest',
systemPrompt: 'You are a helpful assistant.',
schema: z.object({
message: z.string()
})
});
export default agent;Requirements
- Node.js 18+
License
MIT
