Documentation IndexFetch the complete documentation index at: /docs/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
Use Axiom logging with PraisonAI TypeScript
export AXIOM_TOKEN=... export AXIOM_DATASET=ai-traces # optional
Simple Usage
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();
With Configuration