Kukedlc commited on
Commit
c4dc00f
verified
1 Parent(s): 8f0247c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -11,7 +11,7 @@ def is_server_active(host, port):
11
  return s.connect_ex((host, port)) == 0
12
 
13
  # Descarga y ejecuci贸n del modelo
14
- url = "https://huggingface.co/TheBloke/firefly-llama2-13B-chat-GGUF/resolve/main/firefly-llama2-13b-chat.Q4_K_M.gguf?download=true"
15
  response = requests.get(url)
16
  with open("./model.gguf", mode="wb") as file:
17
  file.write(response.content)
@@ -68,7 +68,7 @@ def cleanup_server():
68
  # Configurar y lanzar la interfaz de Gradio
69
  gr_interface = gr.ChatInterface(
70
  fn=response,
71
- title="Mistral-7B-Instruct-v0.2-GGUF Chatbot",
72
  theme='syddharth/gray-minimal'
73
  )
74
 
 
11
  return s.connect_ex((host, port)) == 0
12
 
13
  # Descarga y ejecuci贸n del modelo
14
+ url = "https://huggingface.co/mlabonne/NeuralBeagle14-7B-GGUF/resolve/main/neuralbeagle14-7b.Q4_K_M.gguf?download=true"
15
  response = requests.get(url)
16
  with open("./model.gguf", mode="wb") as file:
17
  file.write(response.content)
 
68
  # Configurar y lanzar la interfaz de Gradio
69
  gr_interface = gr.ChatInterface(
70
  fn=response,
71
+ title="NeuralBeagle 14 7b - By Maxime Labonne :) 鉂わ笍",
72
  theme='syddharth/gray-minimal'
73
  )
74