mirror of
https://gitlab.com/bignutty/labscore.git
synced 2025-06-09 14:43:05 -04:00
17 lines
No EOL
312 B
JavaScript
17 lines
No EOL
312 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",
|
|
|
|
SUMMARIZE_WEBPAGES: "/flamingo/v1/web:summarize"
|
|
})
|
|
|
|
module.exports = {
|
|
ObeliskApi,
|
|
ObeliskHosts
|
|
} |