ehristoforu commited on
Commit
0659121
·
verified ·
1 Parent(s): be0df98

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -9
app.py CHANGED
@@ -110,14 +110,8 @@ def create_interface(model_name, description):
110
  label="Repetition penalty",
111
  ),
112
  ],
113
- title=f"{model_name}",
114
  description=description,
115
- examples=[
116
- ["Hi! How are you?",
117
- "Write a short story about a scary island.",
118
- "Prove that the force of gravity applies to all bodies in the Universe.",
119
- "Give examples of how a quantum computer works."
120
- ],
121
  ],
122
  chatbot=gr.Chatbot(
123
  label=None,
@@ -126,8 +120,8 @@ def create_interface(model_name, description):
126
  )
127
  )
128
 
129
- description = """<h2 align="center"<bold>FluentlyLM Prinum</bold> Demo</h2>"""
130
- interface = create_interface('fluentlylm-prinum-q4_k_m.gguf', description)
131
 
132
  demo = gr.Blocks()
133
 
 
110
  label="Repetition penalty",
111
  ),
112
  ],
113
+ title=f"**FluentlyLM Prinum** ```on ZeroGPU```",
114
  description=description,
 
 
 
 
 
 
115
  ],
116
  chatbot=gr.Chatbot(
117
  label=None,
 
120
  )
121
  )
122
 
123
+ #description = """<h2 align="center"<bold>FluentlyLM Prinum</bold> Demo</h2>"""
124
+ interface = create_interface('fluentlylm-prinum-q4_k_m.gguf', description="")
125
 
126
  demo = gr.Blocks()
127