mirror of
https://gitlab.com/bignutty/labscore.git
synced 2025-06-08 06:03:04 -04:00
15 lines
No EOL
270 B
JavaScript
15 lines
No EOL
270 B
JavaScript
const ObeliskHosts = Object.freeze({
|
|
prod: process.env.OBELISK_HOST,
|
|
local: "http://localhost"
|
|
})
|
|
|
|
const ObeliskApi = Object.freeze({
|
|
HOST: ObeliskHosts.prod,
|
|
|
|
SUMMARIZE_WEBPAGES: "/flamingo/v1/web:summarize"
|
|
})
|
|
|
|
module.exports = {
|
|
ObeliskApi,
|
|
ObeliskHosts
|
|
} |