Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 9 additions & 8 deletions content/docs/agents/get-started/core-concepts.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -162,23 +162,24 @@ Now that you understand the core concepts, continue with:
<Cards>
<Card
icon={<HomeIcon />}
href="/agents/getting-started/quickstart"
href="/agents/get-started/quickstart"
title="Quickstart"
>
Create your first agent, connect a provider, and send a message.
</Card>
<Card
<Card
icon={<HomeIcon />}
href="/agents/agent-bridge/agent-definition"
title="Agent bridge"
href="/agents/setup-your-agent/agent-logic"
title="Agent logic"
>
Deep dive into defining agents, event handlers, context, replies, and signals.Create your first agent, connect a provider, and send a message.
Build your agent logic.
</Card>
<Card
icon={<HomeIcon />}
href="/agents/agent-logic/overview"
title="Agent logic"
href="/agents/manage-agents/manage-conversations"
title="Agent bridge"
>
Connect your preferred framework or runtime.
Manage your agent conversations.
</Card>

</Cards>
2 changes: 1 addition & 1 deletion content/docs/agents/get-started/quickstart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ Open the Slack channel where your app is installed and send a message to your bo

![Slack message](/images/agents/quickstart/slack-message.png)

Edit the files in `app/novu/agents/` to customize how your agent responds. See [Handle Events](/agents/setup-your-agent/connect-your-code/handle-events) for the full list of events your agent can respond to.
Edit the files in `app/novu/agents/` to customize how your agent responds. See [Handle Events](/agents/setup-your-agent/handle-events) for the full list of events your agent can respond to.
</Step>
</Steps>
## Next steps
Expand Down
27 changes: 9 additions & 18 deletions content/docs/agents/get-started/what-is-aci.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -93,27 +93,18 @@

<Cards>
<Card
href="#"
href="/agents/get-started/core-concepts"
title="Core concepts"
icon={<BookText />}
>
Learn more about the core concepts of Novu Agents.
</Card>
<Card
href="/agents/get-started/quickstart"
title="Quickstart"
icon={<HomeIcon />}
>
Create your first agent and connect it to Slack in under 10 minutes.
</Card>
<Card icon={<HomeIcon />} title="Connect your providers">Learn how to connect any provider of your choice.</Card>
<Card icon={<HomeIcon />} href="/" title="Connect your code">
Learn how to connect your to the Novu
</Card>
<Card icon={<HomeIcon />} href="/" title="Add agent logic">
Learn how to connect your agent brain to the agent communication layer
Create your first agent, connect a slack provider, and send a message in under 5 minutes.

Check notice on line 107 in content/docs/agents/get-started/what-is-aci.mdx

View workflow job for this annotation

GitHub Actions / vale

[vale] content/docs/agents/get-started/what-is-aci.mdx#L107

[Novu.Numerals] Spell out '5' in prose (use numerals for 10 and above).
Raw output
{"message": "[Novu.Numerals] Spell out '5' in prose (use numerals for 10 and above).", "location": {"path": "content/docs/agents/get-started/what-is-aci.mdx", "range": {"start": {"line": 107, "column": 82}}}, "severity": "INFO"}
</Card>
</Cards>

## Learn more

<Cards>
<Card icon={<BookText />} href="/" title="Understand concepts">
Learn more about the core concepts of Novu Agents.
</Card>
</Cards>


5 changes: 0 additions & 5 deletions content/docs/agents/index.mdx

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
title: "Agent Deployment"
pageTitle: 'Agent Deployment'
description: 'Learn how to run a conversational agent on your local machine, test it in a development environment, and deploy it to production.'
icon: Rocket
---

Agents built with Novu can run on your local machine. Deploy them to development and production environments when you are ready.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
---
title: "Agent conversations"
title: "Agent Conversations"
pageTitle: 'Manage agents conversations'
description: 'How to manage agent conversations, their history, lifecycle and observability.'
icon: MessagesSquare
---

Novu provides full observability for agent conversations. You can view and manage conversations in the Novu dashboard. To access the conversations, go to the Activity Feed page on the dashboard and switch to the Agent Conversations tab.
Expand Down
17 changes: 12 additions & 5 deletions content/docs/agents/meta.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,17 @@
"get-started/what-is-aci",
"get-started/core-concepts",
"get-started/quickstart",
"setup-your-agent",
"manage-conversations",
"deploy-your-agent",
"add-connect-components",
"receive-inbound-email"

"---Setup Your Agent---",
"setup-your-agent/overview",
"setup-your-agent/agent-logic",
"setup-your-agent/handle-events",
"setup-your-agent/reply-types",
"setup-your-agent/use-signals",
"setup-your-agent/add-connect-components",

"---Manage Agents---",
"manage-agents/manage-conversations",
"manage-agents/deploy-your-agent"
]
}
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
---
title: "Add Connect Components"
pageTitle: 'Novu Agents Add Connect Components'
title: "Connect Components"
pageTitle: 'Novu Agents Connect Components'
description: 'Add Connect UI components so users can link accounts and channels to your agent.'
icon: Puzzle
---

Novu provides pre-built UI components for chat platforms like Slack and Microsoft Teams. Add these components so users can install the Slack or Microsoft Teams app in their workspace and connect it to your agent.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
---
title: "Add Connect Components"
pageTitle: 'Novu Agents Add Connect Components'
title: "Connect Components"
pageTitle: 'Novu Agents Connect Components'
description: 'Add Connect UI components so users can link accounts and channels to your agent.'
icon: Puzzle
---

Novu provides pre-built UI components for chat platforms like Slack and Microsoft Teams. Add these components so users can install the Slack or Microsoft Teams app in their workspace and connect it to your agent.
Expand Down Expand Up @@ -48,7 +49,7 @@ export default SlackConnectButtonComponent;
`SlackConnectButton` accepts the following props to customize the UI and behavior:

---type-table---
../platform/sdks/types/react-types.ts#SlackConnectButtonProps
../../platform/sdks/types/react-types.ts#SlackConnectButtonProps
---end---

## Microsoft Teams connect button
Expand Down
Loading
Loading