ysharma HF staff commited on
Commit
96ac3aa
1 Parent(s): 6bcba58

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -4
app.py CHANGED
@@ -11,9 +11,10 @@ HF_TOKEN = os.environ.get("HF_TOKEN", None)
11
 
12
  DESCRIPTION = '''
13
  <div>
14
- <h1 style="text-align: center;">CodeGemma</h1>
15
- <p>This Space demonstrates model <a href="https://huggingface.co/google/codegemma-7b-it">CodeGemma-7b-it</a> by Google. CodeGemma is a collection of lightweight open code models built on top of Gemma. Feel free to play with it, or duplicate to run privately!</p>
16
- <p>🔎 For more details about the CodeGemma release and how to use the models with <code>transformers</code>, take a look <a href="https://huggingface.co/blog/codegemma">at our blog post</a>.</p>
 
17
  </div>
18
  '''
19
 
@@ -81,7 +82,7 @@ chatbot=gr.Chatbot(height=500) #placeholder=PLACEHOLDER
81
 
82
  with gr.Blocks(fill_height=True) as demo:
83
 
84
- #gr.Markdown(DESCRIPTION)
85
 
86
  gr.ChatInterface(
87
  fn=chat_llama3_8b,
 
11
 
12
  DESCRIPTION = '''
13
  <div>
14
+ <h1 style="text-align: center;">Chat with Llama3-8b</h1>
15
+ <p>This Space demonstrates the instruction-tuned model <a href="https://huggingface.co/hsramall/hsramall-8b-chat-placeholder"><b>Llama3 8b Chat</b></a> by Meta. Llama3 is Meta’s new open LLM and comes in two sizes: 8b and 70b. Feel free to play with it, or duplicate to run privately!</p>
16
+ <p>🔎 For more details about the Llama3 release and how to use the model with <code>transformers</code>, take a look <a href="https://huggingface.co/blog/llama3">at our blog post</a>.</p>
17
+ <p>🦕 Looking for an even more powerful model? Check out the <b>Hugging Chat</b> integration for Meta Llama 3 70b</p>
18
  </div>
19
  '''
20
 
 
82
 
83
  with gr.Blocks(fill_height=True) as demo:
84
 
85
+ gr.Markdown(DESCRIPTION)
86
 
87
  gr.ChatInterface(
88
  fn=chat_llama3_8b,