***

title: create
slug: /reference/python/rest/fabric/ai-agents/create
description: Create a new AI agent resource.
max-toc-depth: 3
---------------------

For a complete index of all SignalWire documentation pages, fetch https://signalwire.com/docs/llms.txt

Create a new AI agent resource.

<EndpointSchemaSnippet endpoint="POST /api/fabric/resources/ai_agents" />

## **Response Example**

<EndpointResponseSnippet endpoint="POST /api/fabric/resources/ai_agents" />

## **Example**

```python {9}
from signalwire.rest import RestClient

client = RestClient(
    project="your-project-id",
    token="your-api-token",
    host="your-space.signalwire.com",
)

result = client.fabric.ai_agents.create(
    name="support-bot",
    agent_id="support-bot-001",
    prompt={"text": "You are a helpful support agent."},
)
print(f"Created: {result['id']}")
```