Spaces:
lion-ai
/
Running

AleksanderObuchowski commited on
Commit
bfbb349
1 Parent(s): 480c2d7

final touches

Browse files
Files changed (2) hide show
  1. .env.local.template +3 -3
  2. Dockerfile +2 -2
.env.local.template CHANGED
@@ -18,7 +18,7 @@ OPENID_CLIENT_SECRET=
18
  OPENID_SCOPES="openid profile" # Add "email" for some providers like Google that do not provide preferred_username
19
  OPENID_PROVIDER_URL=https://huggingface.co # for Google, use https://accounts.google.com
20
 
21
- PUBLIC_APP_DESCRIPTION="This is a prompt system compliance test of the latest 7b model in development at BSC, code name Salamandra. No personal information is saved."
22
  COMMUNITY_TOOLS=false
23
  TOOLS=`[]`
24
  # 'name', 'userMessageToken', 'assistantMessageToken' are required
@@ -81,5 +81,5 @@ PARQUET_EXPORT_SECRET=
81
  PUBLIC_APP_NAME=${APP_NAME} # name used as title throughout the app
82
  PUBLIC_APP_ASSETS=chatui # used to find logos & favicons in static/$PUBLIC_APP_ASSETS
83
  PUBLIC_APP_COLOR=${APP_COLOR} # can be any of tailwind colors: https://tailwindcss.com/docs/customizing-colors#default-color-palette
84
- PUBLIC_APP_DATA_SHARING=#set to 1 to enable disclaimers & options about data sharing
85
- PUBLIC_APP_DATA_DISCLAIMER=#set to 1 to enable disclaimers about model outputs
 
18
  OPENID_SCOPES="openid profile" # Add "email" for some providers like Google that do not provide preferred_username
19
  OPENID_PROVIDER_URL=https://huggingface.co # for Google, use https://accounts.google.com
20
 
21
+ PUBLIC_APP_DESCRIPTION="Greatulacje użytkowniku! Otrzymaleś dostęp do wersji testowej Eskulapa - pierwszego polskiego medycznego modelu języka"
22
  COMMUNITY_TOOLS=false
23
  TOOLS=`[]`
24
  # 'name', 'userMessageToken', 'assistantMessageToken' are required
 
81
  PUBLIC_APP_NAME=${APP_NAME} # name used as title throughout the app
82
  PUBLIC_APP_ASSETS=chatui # used to find logos & favicons in static/$PUBLIC_APP_ASSETS
83
  PUBLIC_APP_COLOR=${APP_COLOR} # can be any of tailwind colors: https://tailwindcss.com/docs/customizing-colors#default-color-palette
84
+ PUBLIC_APP_DATA_SHARING=1#set to 1 to enable disclaimers & options about data sharing
85
+ PUBLIC_APP_DATA_DISCLAIMER=1#set to 1 to enable disclaimers about model outputs
Dockerfile CHANGED
@@ -17,7 +17,7 @@ RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-ins
17
  rm -rf /var/lib/apt/lists/*
18
 
19
 
20
- RUN git clone https://github.com/langtech-bsc/chat-ui.git
21
 
22
  WORKDIR /app/chat-ui
23
 
@@ -55,7 +55,7 @@ ARG MODEL_PROMPT_TEMPLATE
55
  ARG APP_COLOR
56
  ARG APP_NAME
57
 
58
- ENV TZ=Europe/Paris \
59
  PORT=3000
60
 
61
 
 
17
  rm -rf /var/lib/apt/lists/*
18
 
19
 
20
+ RUN git clone https://github.com/huggingface/chat-ui.git
21
 
22
  WORKDIR /app/chat-ui
23
 
 
55
  ARG APP_COLOR
56
  ARG APP_NAME
57
 
58
+ ENV TZ=Europe/Warsaw \
59
  PORT=3000
60
 
61