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

# Agents resource

> Async operations for agents uploaded to the configured tenant.

Access these methods through `client.agents`.

<h2 id="list">
  `client.agents.list`
</h2>

List uploaded agents visible to the configured tenant.

```python Signature theme={null}
async def list() -> AgentsResponse
```

**Returns**

<a href="/reference/sdk/models/agents#agents-response"><code>AgentsResponse</code></a>

For examples, see the [Python SDK guide](/sdk/resources).

<h2 id="download-url">
  `client.agents.download_url`
</h2>

Create a temporary download URL for an uploaded agent.

```python Signature theme={null}
async def download_url(name: str) -> AgentDownloadURLResponse
```

**Parameters**

<div className="border-b border-gray-200 py-3 dark:border-gray-800">
  <div className="flex min-w-0 flex-wrap items-baseline gap-x-2 gap-y-1"><span className="break-all font-mono text-sm">{"name"}</span><span className="min-w-0 break-words text-sm text-gray-500 dark:text-gray-400">required · str</span></div>
</div>

**Returns**

<a href="/reference/sdk/models/agents#agent-download-url-response"><code>AgentDownloadURLResponse</code></a>

For examples, see the [Python SDK guide](/sdk/resources).
