Prerequisites
Before using this example, make sure you:
- Install Node.js 18+ and
npm
. - Set up an OpenAI API key.
- Complete the User authentication quickstart to create a Next.js app integrated with Auth0.
- Configure a Social Connection for Slack in Auth0
- Make sure to enable
Token Vault
- Make sure to enable
1. Configure Auth0 AI
First, you must install the SDK:./src/lib/auth0-ai.ts
Here, the property
You can check different authentication options for Next.js with Auth0 at the official documentation.
auth0
is an instance of @auth0/nextjs-auth0
to handle the application auth flows. You can check different authentication options for Next.js with Auth0 at the official documentation.
2. Integrate your tool with Slack
Wrap your tool using the Auth0 AI SDK to obtain an access token for the Slack API../src/lib/tools/listChannels.ts
3. Handle authentication redirects
Interrupts are a way for the system to pause execution and prompt the user to take an action—such as authenticating or granting API access—before resuming the interaction. This ensures that any required access is granted dynamically and securely during the chat experience. In this context, Auth0-AI SDK manages authentication redirects in the Vercel AI SDK via these interrupts.Server Side
On the server-side code of your Next.js App, you need to set up the tool invocation and handle the interruption messaging via theerrorSerializer
. The setAIContext
function is used to set the async-context for the Auth0 AI SDK../src/app/api/chat/route.ts
Client Side
On this example we utilize theEnsureAPIAccessPopup
component to show a popup that allows the user to authenticate with Slack and grant access with the requested scopes. You’ll first need to install the @auth0/ai-components
package:./src/components/chat.tsx
Account Linking
If you’re integrating with Google, but users in your app or agent can sign in using other methods (e.g., a username and password or another social provider), you’ll need to link these identities into a single user account. Auth0 refers to this process as Account Linking. Account Linking logic and handling will vary depending on your app or agent. You can find an example of how to implement it in a Next.js chatbot app here. If you have questions or are looking for best practices, join our Discord and ask in the#auth0-for-gen-ai
channel.