Getting started
Welcome to the Aeon documentation!
Getting started with Aeon is quick and easy, you can be up and running in just a few minutes.
1. Get your credentials
- Go to your dashboard
- Copy your API key and Project ID
2. Install the SDK
Python:
bash1pip install aeonpy
JavaScript/TypeScript:
bash1npm install @aeon-ai/aeonjs
3. Initialize the Aeon client
python1from aeon import Aeon 2 3# Use env vars for secrets 4aeon = Aeon(api_key="YOUR_API", project_id=123)
Or in JavaScript/TypeScript:
javascript1import Aeon from "@aeon-ai/aeonjs"; 2 3const aeon = new Aeon("API_KEY", 123);
Next Steps
- Learn how to track conversations
- Use the API directly