{part.content}
; case "tool-call": return (
Status: {part.state}
Input: {JSON.stringify(part.input, null, 2)}
{part.output && (
<>
Output: {JSON.stringify(part.output, null, 2)}
>
)}
Then configure the following environment variables into your deployment environment (*ex: AWS, Vercel, GCP*):
* `INNGEST_API_KEY`: Your Event Key
* `INNGEST_SIGNING_KEY`: Your Signing Key
**Deploying your AgentKit network**
You can now deploy your AgentKit network to your preferred cloud provider.
Once deployed, copy the deployment URL for the final configuration step.
### 4. Sync your AgentKit network with the Inngest Platform
On your Inngest dashboard, click on the "Sync new app" button at the top right of the screen.
Then, paste the deployment URL into the "App URL" by adding `/api/inngest` to the end of the URL:
Your AgentKit network can now be triggered manually from the Inngest Dashboard or [from your app using `network.run()`](/concepts/networks).
{/* ## Configuring Parallel tool calls, Multitenancy and Retries */}
## Configuring Multitenancy and Retries
Then, click on the "Run" button to trigger your AgentKit network"
### Inspect AgentKit Agents token usage, input and output
In the run view of your AgentKit network run, the Agents step will be highlighted with a ✨ green icon.
By expanding the step, you can inspect the Agents:
* The **model used**, ex: `gpt-4o`
* The **token usage** detailed as prompt tokens, completion tokens, and total tokens
* The **input** provided to the Agent
* The **output** provided by the Agent
# Quick start
Source: https://agentkit.inngest.com/getting-started/quick-start
Learn the basics of AgentKit in a few minutes.
In this tutorial, you will create an [Agent](/concepts/agents) and run it within a [Network](/concepts/networks) using AgentKit.
In the Invoke function modal, specify the input prompt for your agent and click the "Invoke function" button:
```json Invoke payload
{
"data": {
"input": "How do I aggregate an integer column across a date column by week?"
}
}
```
You'll be redirected to watch the agent run and view the output:
You can inspect the answers of each Agent by selecting the *Finalization* step and inspecting the JSON payload in the right panel:
Minimal example using a single-threaded conversation.
AI is thinking...
}{e.event_name}
{e.reason}
{data.title}
{data.reasoning}
{data.sql}