> ## Documentation Index
> Fetch the complete documentation index at: https://wb-21fd5541-drtangible-wip-test-inline-tag.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# createOpenAIAgentsTracingProcessor

> TypeScript SDK reference

> **createOpenAIAgentsTracingProcessor**(): `TracingProcessor`

Create a new Weave tracing processor for OpenAI Agents.

Defined in: [src/integrations/openai.agent.ts:102](https://github.com/wandb/weave/blob/7c9efdc9fe05ffcaf2430dd652ef9bc5b3ffdfaa/sdks/node/src/integrations/openai.agent.ts#L102)

## Returns

`TracingProcessor`

A TracingProcessor instance that can be registered with OpenAI Agents

## Example

```typescript twoslash theme={null}
// @noErrors
import { addTraceProcessor } from '@openai/agents';
import { createOpenAIAgentsTracingProcessor } from 'weave';

const processor = createOpenAIAgentsTracingProcessor();
addTraceProcessor(processor);
```
