pissbot-9000/labscore/api/obelisk/endpoints.js
2023-12-13 21:36:18 +01:00

18 lines
No EOL
367 B
JavaScript

const ObeliskHosts = Object.freeze({
prod: process.env.OBELISK_HOST,
local: "http://localhost"
})
const ObeliskApi = Object.freeze({
HOST: ObeliskHosts.prod,
GOOGLE_BARD: "/parrot/v1/google:bard",
GEMINI_PRO_VISION: "/parrot/v1/google:geminivision",
SUMMARIZE_WEBPAGES: "/flamingo/v1/web:summarize"
})
module.exports = {
ObeliskApi,
ObeliskHosts
}