summarize

This commit is contained in:
derpystuff 2023-12-09 00:31:08 +01:00
parent de395190aa
commit 24fbe2c566
4 changed files with 126 additions and 0 deletions

View file

@ -0,0 +1,15 @@
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
}