nxphi47 commited on
Commit
2ee24c4
โ€ข
1 Parent(s): 8ae6b99

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -5
app.py CHANGED
@@ -199,8 +199,8 @@ that your responses are socially unbiased and positive in nature."""
199
 
200
  # ============ CONSTANT ============
201
  # https://github.com/gradio-app/gradio/issues/884
202
- MODEL_NAME = "SeaLLM-13B"
203
- MODEL_NAME = str(os.environ.get("MODEL_NAME", "SeaLLM-13B"))
204
 
205
  MODEL_TITLE = """
206
  <div class="container" style="
@@ -250,15 +250,15 @@ MODEL_DESC = f"""
250
  <a href='https://arxiv.org/pdf/2312.00738.pdf'><img src='https://img.shields.io/badge/Paper-PDF-red'></a>
251
  </div>
252
  <span style="font-size: larger">
253
- <a href="https://huggingface.co/SeaLLMs/SeaLLM-Chat-13b" target="_blank">{MODEL_NAME}</a> - a helpful assistant for Southeast Asian Languages. It supports English ๐Ÿ‡ฌ๐Ÿ‡ง, Vietnamese ๐Ÿ‡ป๐Ÿ‡ณ, Indonesian ๐Ÿ‡ฎ๐Ÿ‡ฉ, Thai ๐Ÿ‡น๐Ÿ‡ญ, Malay ๐Ÿ‡ฒ๐Ÿ‡พ, Khmer๐Ÿ‡ฐ๐Ÿ‡ญ, Lao๐Ÿ‡ฑ๐Ÿ‡ฆ, Tagalog๐Ÿ‡ต๐Ÿ‡ญ and Burmese๐Ÿ‡ฒ๐Ÿ‡ฒ.
254
  Explore <a href="https://huggingface.co/SeaLLMs/SeaLLM-Chat-13b" target="_blank">our article</a> for more.
255
  </span>
256
  <br>
257
  <span>
258
  <span style="color: red">NOTE: The chatbot may produce false and harmful content and does not have up-to-date knowledge.</span>
259
  By using our service, you are required to agree to our <a href="https://huggingface.co/SeaLLMs/SeaLLM-Chat-13b/blob/main/LICENSE" target="_blank" style="color: red">Terms Of Use</a>, which includes
260
- not to use our service to generate any harmful, inappropriate or illegal content that violates local and international laws.
261
- The service collects user dialogue data for testing and performance improvement, and reserves the right to distribute it under
262
  <a href="https://creativecommons.org/licenses/by/4.0/">(CC-BY)</a> or similar license. So do not enter any personal information!
263
  </span>
264
  """.strip()
 
199
 
200
  # ============ CONSTANT ============
201
  # https://github.com/gradio-app/gradio/issues/884
202
+ MODEL_NAME = "SeaLLM-7B"
203
+ MODEL_NAME = str(os.environ.get("MODEL_NAME", "SeaLLM-7B"))
204
 
205
  MODEL_TITLE = """
206
  <div class="container" style="
 
250
  <a href='https://arxiv.org/pdf/2312.00738.pdf'><img src='https://img.shields.io/badge/Paper-PDF-red'></a>
251
  </div>
252
  <span style="font-size: larger">
253
+ <a href="https://huggingface.co/SeaLLMs/SeaLLM-7B-v2" target="_blank">{MODEL_NAME}</a> - a helpful assistant for Southeast Asian Languages ๐Ÿ‡ฌ๐Ÿ‡ง ๐Ÿ‡ป๐Ÿ‡ณ ๐Ÿ‡ฎ๐Ÿ‡ฉ ๐Ÿ‡น๐Ÿ‡ญ ๐Ÿ‡ฒ๐Ÿ‡พ ๐Ÿ‡ฐ๐Ÿ‡ญ ๐Ÿ‡ฑ๐Ÿ‡ฆ ๐Ÿ‡ต๐Ÿ‡ญ ๐Ÿ‡ฒ๐Ÿ‡ฒ.
254
  Explore <a href="https://huggingface.co/SeaLLMs/SeaLLM-Chat-13b" target="_blank">our article</a> for more.
255
  </span>
256
  <br>
257
  <span>
258
  <span style="color: red">NOTE: The chatbot may produce false and harmful content and does not have up-to-date knowledge.</span>
259
  By using our service, you are required to agree to our <a href="https://huggingface.co/SeaLLMs/SeaLLM-Chat-13b/blob/main/LICENSE" target="_blank" style="color: red">Terms Of Use</a>, which includes
260
+ not to use our service to generate any harmful, inappropriate or illegal content.
261
+ The service collects user dialogue data for testing and improvement under
262
  <a href="https://creativecommons.org/licenses/by/4.0/">(CC-BY)</a> or similar license. So do not enter any personal information!
263
  </span>
264
  """.strip()