T3lli commited on
Commit
11d07e4
·
verified ·
1 Parent(s): f06d789

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -7
app.py CHANGED
@@ -4,7 +4,7 @@ from huggingface_hub import InferenceClient
4
  """
5
  For more information on `huggingface_hub` Inference API support, please check the docs: https://huggingface.co/docs/huggingface_hub/v0.22.2/en/guides/inference
6
  """
7
- client = InferenceClient("unsloth/Llama-3.2-1B-Instruct")
8
 
9
 
10
  def respond(
@@ -46,18 +46,18 @@ For information on how to customize the ChatInterface, peruse the gradio docs: h
46
 
47
  demo = gr.ChatInterface(
48
  respond,
49
- inputs = [
 
 
 
 
50
  gr.Markdown(
51
  """
52
  # Welcome to My Chat Interface
53
  This app uses the Llama-3.2-1B-Instruct model to provide conversational AI responses.
54
  Adjust the parameters below to customize the chat behavior.
55
  """,
56
- ),
57
- ]
58
-
59
- additional_inputs=[
60
- gr.Textbox(value="You are a friendly Chatbot.", label="System message"),
61
  gr.Slider(minimum=1, maximum=2048, value=512, step=1, label="Max new tokens"),
62
  gr.Slider(minimum=0.1, maximum=4.0, value=0.75, step=0.1, label="Temperature"),
63
  gr.Slider(
 
4
  """
5
  For more information on `huggingface_hub` Inference API support, please check the docs: https://huggingface.co/docs/huggingface_hub/v0.22.2/en/guides/inference
6
  """
7
+ client = InferenceClient("DrDomedag/LocoLamav2")
8
 
9
 
10
  def respond(
 
46
 
47
  demo = gr.ChatInterface(
48
  respond,
49
+
50
+
51
+
52
+ additional_inputs=[
53
+ gr.Textbox(value="You are a friendly Chatbot.", label="System message"),
54
  gr.Markdown(
55
  """
56
  # Welcome to My Chat Interface
57
  This app uses the Llama-3.2-1B-Instruct model to provide conversational AI responses.
58
  Adjust the parameters below to customize the chat behavior.
59
  """,
60
+ ),
 
 
 
 
61
  gr.Slider(minimum=1, maximum=2048, value=512, step=1, label="Max new tokens"),
62
  gr.Slider(minimum=0.1, maximum=4.0, value=0.75, step=0.1, label="Temperature"),
63
  gr.Slider(