Next.js Discord

Discord Forum

Next.js AI Chatbot Template

Unanswered
locked in (crxwn) posted this in #help-forum
Open in Discord
Hey everyone, I'm a teen and also quite new to Next.js. So I wanna apologize for my inexperience in advance. I want to use this next.js template (https://vercel.com/templates/next.js/nextjs-ai-chatbot). I have two questions :

1. Is it possible to integrate a custom bot (copilot) with a token endpoint in place of OpenAI?
2. What’s the cleanest way to completely remove authentication without breaking the template?

I'd really appreciate it if someone helps me and could guide me with this. Thank you everyone.

50 Replies

Hey
yes, it's possible to integrate it with a custom OpenAI Like API if that’s what you’re talking about
Well there is a branch in the template where they disable auth for public use
https://github.com/vercel/ai-chatbot/tree/live, the live branch does not have auth
@tsa Hey
hey i js saw this 😭 so sorry and tysm for the response !!
@tsa yes, it's possible to integrate it with a custom OpenAI Like API if that’s what you’re talking about
uh yeah i have a copilot endpoint so i was wondering if that was possible asw
@tsa wdym by a copilot endpoint
token endpoint
you use it to integrate it into your apps and stuff
@locked in (crxwn) token endpoint
you're talking about the github models api? sorry lol, didn't get what copilot / token endpoint you're talking about
i js wanna integrate it with this template...but im not sure how to because im new to this.
is it like openai's /chat/completions
@tsa is it like openai's /chat/completions
uh so i js made a new bot, completely nothing on it (which i will delete in a while), just to show you the format of the token endpoint lol
js a min
@tsa is it like openai's /chat/completions
ive never used their apis so idk 😭
alsoo ur personal website is pretty cool !!
im making my own atm lol
you can either make this into an OpenAI Compatible API and plug it into the AI SDK
or you can create a custom provider in the AI SDK for the copilot (https://sdk.vercel.ai/providers/community-providers/custom-providers) (this might not be easy to get started with)
@tsa cool, and how do you call it
i have barely used that token endpoint in my applications before so im not too sure 😭 but ill figure that out
really appreciate your help tho
yeah, converting it to an OpenAI Compat API would be pretty easy though
ah so i do it via the link above?
import { createOpenAICompatible } from '@ai-sdk/openai-compatible';

const copilot = createOpenAICompatible({
  name: 'copilot',
  baseURL: 'https://integrate.api.nvidia.com/v1',
  headers: {
    Authorization: `Bearer ${process.env.NIM_API_KEY}`,
  },
});


and usage would be like this
@locked in (crxwn) ah so i do it via the link above?
well that's for a custom provider
uh so does this copilot endpoint count as a custom provider?
@locked in (crxwn) uh so does this copilot endpoint count as a custom provider?
well if you wanted to you could creeate one, but that'll be hard
oh
@locked in (crxwn) uh so does this copilot endpoint count as a custom provider?
while an OpenAI Compatible will count as well it's already a provider
@locked in (crxwn) so could i use this for the copilot endpoint?
Yeah, you'd need to convert it to an openai like API Like:

const express = require('express');


const app = express();
app.use(express.json());

app.post('/v1/chat/completions', async (req, res) => {
    const userMessage = req.body.messages[0].content;
....the copilot code
    res.json({
        id: conversationId,
        object: 'chat.completion',
        created: Date.now(),
        model: 'copilot-studio',
        choices: [{
            index: 0,
            message: {
                role: 'assistant',
                content: botReply
            },
            finish_reason: 'stop'
        }]
    });
});

app.listen(3000, () => {
    console.log('Server running on port 3000');
});
oh alr
ill try it out later !
if anything, you're okay if i ping you right?
yeah
okay tysm ! :))
@tsa thanks, it's oss
oss?
(opensource)
oh right mb i never knew its short form 😭