> ## Documentation Index
> Fetch the complete documentation index at: https://docs.praison.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Axiom

> Use Axiom logging with PraisonAI TypeScript

# Axiom Observability

## Environment Variables

```bash theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
export AXIOM_TOKEN=...
export AXIOM_DATASET=ai-traces  # optional
```

## Quick Start

```typescript theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
import { Agent, setObservabilityAdapter } from 'praisonai';
import { createObservabilityAdapter } from 'praisonai/observability';

const obs = await createObservabilityAdapter('axiom');
setObservabilityAdapter(obs);

const agent = new Agent({
  name: 'TracedAgent',
  instructions: 'You are helpful.',
  llm: 'openai/gpt-4o-mini'
});

await agent.chat('Hello!');
await obs.flush();
```

## Related

* [Axiom CLI Usage](/docs/js/observability/axiom-cli)
