Grandediw commited on
Commit
1fc852d
·
verified ·
1 Parent(s): 910563c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +0 -29
app.py CHANGED
@@ -31,35 +31,6 @@ def respond(message, history, system_message, max_tokens, temperature, top_p):
31
  response += token
32
  yield response
33
 
34
- with gr.Blocks(title="Text Generation Interface") as demo:
35
- gr.Markdown("# LORA Text Generation Demo")
36
-
37
- with gr.Column():
38
- system_message = gr.Textbox(
39
- value="You are a helpful and friendly assistant.",
40
- label="System Prompt",
41
- lines=3,
42
- )
43
- max_tokens = gr.Slider(
44
- minimum=1, maximum=2048, value=512, step=1,
45
- label="Max new tokens"
46
- )
47
- temperature = gr.Slider(
48
- minimum=0.1, maximum=4.0, value=0.7, step=0.1,
49
- label="Temperature"
50
- )
51
- top_p = gr.Slider(
52
- minimum=0.1, maximum=1.0, value=0.95, step=0.05,
53
- label="Top-p"
54
- )
55
-
56
- # Use type='tuple' if you want to maintain old style conversation format
57
- # or omit it to use the default message format.
58
- chat = gr.ChatInterface(
59
- fn=respond,
60
- additional_inputs=[system_message, max_tokens, temperature, top_p],
61
- type='tuples'
62
- )
63
 
64
  if __name__ == "__main__":
65
  demo.launch()
 
31
  response += token
32
  yield response
33
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
34
 
35
  if __name__ == "__main__":
36
  demo.launch()