Spaces:
Running
Running
# Use .env.local to change these variables | |
# DO NOT EDIT THIS FILE WITH SENSITIVE DATA | |
MONGODB_URL=${MONGODB_URL} | |
MONGODB_DB_NAME=chat-ui | |
MONGODB_DIRECT_CONNECTION=false | |
COOKIE_NAME=chat-ui | |
HF_ACCESS_TOKEN=#hf_<token> from from https://huggingface.co/settings/token | |
# used to activate search with web functionality. disabled if not defined | |
SERPAPI_KEY=#your serpapi key here | |
# Parameters to enable "Sign in with HF" | |
OPENID_CONFIG=`{ | |
PROVIDER_URL: "https://accounts.google.com", | |
CLIENT_ID: "${OPENID_CLIENT_ID}", | |
CLIENT_SECRET: "${OPENID_CLIENT_SECRET}", | |
SCOPES: "openid profile email", | |
}` | |
MESSAGES_BEFORE_LOGIN=0 | |
PUBLIC_APP_DESCRIPTION="Greatulacje użytkowniku! Otrzymaleś dostęp do wersji testowej Eskulapa - pierwszego polskiego medycznego modelu języka" | |
COMMUNITY_TOOLS=false | |
TOOLS=`[]` | |
# 'name', 'userMessageToken', 'assistantMessageToken' are required | |
MODELS=`[{ | |
"name": "lion-ai/eskulap-alpha-0", | |
"displayName": "eskulap-alpha-0", | |
"endpoints" : [{ | |
"type": "openai", | |
"baseURL": "https://api.runpod.ai/v2/vllm-ngcsereofrslpj/openai/v1", | |
"apiKey": "S898TGMK9YPSFXMB885WKV3N4NMIHVCOHTGJJS45" | |
}] | |
}]` | |
#Repetition penality = presence_penalty + 2 | |
TASK_MODEL=`{ | |
"name": "czearing/article-title-generator", | |
"preprompt": "", | |
"chatPromptTemplate": "{{#if @root.preprompt}}system\n{{@root.preprompt}}\n{{/if}}{{#each messages}}{{#ifUser}}{{content}}\n\n{{/ifUser}}{{#ifAssistant}}{{content}}\n{{/ifAssistant}}{{/each}}", | |
"promptExamples": [ | |
{ | |
"title": "How does an airplane produce lift?", | |
"prompt": "How does an airplane produce lift in order to fly?" | |
}, { | |
"title": "¿Qué és un meme?", | |
"prompt": "¿Qué és un meme y qué historia hay detrás del nombre?" | |
}, { | |
"title": "Resumeix una notícia", | |
"prompt": "Resumeix aquesta notícia en menys de 20 paraules: 'Tropes de l’exèrcit d’Israel han començat aquesta matinada la invasió del Líban, en una maniobra anticipada pels atacs de les darreres hores, tant a la capital, Beirut, com a la zona sud del país. Les tropes han començat a travessar la frontera internacional a les dues de la matinada, hora libanesa. Segons l’exèrcit israelià és una 'operació limitada' que pretén eliminar l’Hesbol·là, molt actiu en aquesta zona. Ara com ara, l’exèrcit libanès ha optat per recloure les tropes dins les casernes, a fi d’evitar un conflicte directe entre tots dos exèrcits. El Llevant podria entrar en una guerra regional de conseqüències impossibles de preveure. L’exèrcit israelià ha confirmat que les operacions havien estat aprovades pel gabinet de guerra, que ahir es va reunir fins tard. En un comunicat oficial ha avisat que l’artilleria i l’aviació es mantindrien actives en suport de les tropes que ja han travessat la frontera.' " | |
} | |
], | |
"endpoints": [ | |
{ | |
"type": "tgi", | |
"url": "http://localhost:8090", | |
} | |
], | |
"parameters": { | |
"temperature": 0.4, | |
"repetition_penalty": 2.0, | |
"max_new_tokens": 200, | |
} | |
}` | |
OLD_MODELS=`[]`# any removed models, `{ name: string, displayName?: string, id?: string }` | |
PUBLIC_ORIGIN=${SPACE_HOST} | |
PUBLIC_SHARE_PREFIX=${SPACE_HOST}/r | |
PUBLIC_GOOGLE_ANALYTICS_ID=#G-XXXXXXXX / Leave empty to disable | |
PUBLIC_DEPRECATED_GOOGLE_ANALYTICS_ID=#UA-XXXXXXXX-X / Leave empty to disable | |
PUBLIC_ANNOUNCEMENT_BANNERS=`[ | |
{ | |
"title": "Eskulap Alpha 0 teraz w twoim komputrze", | |
"linkTitle": "Release", | |
} | |
]` | |
PARQUET_EXPORT_DATASET= | |
PARQUET_EXPORT_HF_TOKEN= | |
PARQUET_EXPORT_SECRET= | |
PUBLIC_APP_NAME=${APP_NAME} # name used as title throughout the app | |
PUBLIC_APP_ASSETS=chatui # used to find logos & favicons in static/$PUBLIC_APP_ASSETS | |
PUBLIC_APP_COLOR=${APP_COLOR} # can be any of tailwind colors: https://tailwindcss.com/docs/customizing-colors#default-color-palette | |
PUBLIC_APP_DATA_SHARING=1#set to 1 to enable disclaimers & options about data sharing | |
PUBLIC_APP_DATA_DISCLAIMER=1#set to 1 to enable disclaimers about model outputs |