chatbot / utils /app /api.ts
matthoffner's picture
Upload 242 files
15d9c3e
raw
history blame
253 Bytes
import { Plugin, PluginID } from '@/types/plugin';
export const getEndpoint = (plugin: Plugin | null) => {
if (!plugin) {
return 'api/chat';
}
if (plugin.id === PluginID.GOOGLE_SEARCH) {
return 'api/google';
}
return 'api/chat';
};