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 Maxim AI testing with PraisonAI TypeScript
export MAXIM_API_KEY=...
Simple Usage
import { Agent, setObservabilityAdapter } from 'praisonai'; import { createObservabilityAdapter } from 'praisonai/observability'; const obs = await createObservabilityAdapter('maxim'); 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