Abhaykoul commited on
Commit
474edd5
1 Parent(s): 7aeddb2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -6
app.py CHANGED
@@ -10,8 +10,8 @@ import gradio as gr
10
  from huggingface_hub import hf_hub_download
11
 
12
  hf_hub_download(
13
- repo_id="Abhaykoul/HelpingAI2.5-prototype-v2-Q8_0-GGUF",
14
- filename="helpingai2.5-prototype-v2-q8_0.gguf",
15
  local_dir="./models"
16
  )
17
 
@@ -90,16 +90,16 @@ def respond(
90
  outputs += output
91
  yield outputs
92
 
93
- description = "HelpingAI2.5-prototype demo using llama-cpp"
94
 
95
 
96
  demo = gr.ChatInterface(
97
  respond,
98
  additional_inputs=[
99
  gr.Dropdown([
100
- 'helpingai2.5-prototype-v2-q8_0.gguf'
101
  ],
102
- value="helpingai2.5-prototype-v2-q8_0.gguf",
103
  label="Model"
104
  ),
105
  gr.Textbox(value="You are HelpingAI a emotional AI always answer my question in HelpingAI style", label="System message"),
@@ -131,7 +131,7 @@ demo = gr.ChatInterface(
131
  undo_btn="Undo",
132
  clear_btn="Clear",
133
  submit_btn="Send",
134
- title="HelpingAI2.5-Prototype",
135
  description=description,
136
  chatbot=gr.Chatbot(
137
  scale=1,
 
10
  from huggingface_hub import hf_hub_download
11
 
12
  hf_hub_download(
13
+ repo_id="mradermacher/HelpingAI2.5-10B-GGUF",
14
+ filename="HelpingAI2.5-10B.f16.gguf",
15
  local_dir="./models"
16
  )
17
 
 
90
  outputs += output
91
  yield outputs
92
 
93
+ description = "HelpingAI2.5-10B is a compact yet powerful language model specifically designed for emotionally intelligent conversations and human-centric interactions."
94
 
95
 
96
  demo = gr.ChatInterface(
97
  respond,
98
  additional_inputs=[
99
  gr.Dropdown([
100
+ 'HelpingAI2.5-10B.f16.gguf
101
  ],
102
+ value="HelpingAI2.5-10B.f16.gguf",
103
  label="Model"
104
  ),
105
  gr.Textbox(value="You are HelpingAI a emotional AI always answer my question in HelpingAI style", label="System message"),
 
131
  undo_btn="Undo",
132
  clear_btn="Clear",
133
  submit_btn="Send",
134
+ title="HelpingAI2.5 demo using llama-cpp",
135
  description=description,
136
  chatbot=gr.Chatbot(
137
  scale=1,