Omar Solano commited on
Commit
2813cbe
·
1 Parent(s): 5bb3525

remove button

Browse files
Files changed (1) hide show
  1. gradio_anthropic.py +1 -3
gradio_anthropic.py CHANGED
@@ -80,7 +80,6 @@ system_prompt = gr.Textbox(
80
  )
81
  temperature = gr.Slider(label="Temperature", value=0.0, minimum=0.0, maximum=1.0)
82
  max_tokens = gr.Slider(label="Max Tokens", value=4096, minimum=1, maximum=4096)
83
- duplicate = gr.DuplicateButton(variant="primary")
84
 
85
 
86
  demo = gr.ChatInterface(
@@ -91,9 +90,8 @@ demo = gr.ChatInterface(
91
  system_prompt,
92
  temperature,
93
  max_tokens,
94
- duplicate,
95
  ],
96
- description="Claude Chatbot, Duplicate space and add your own API key in the 'additional inputs' section",
97
  fill_height=True,
98
  )
99
 
 
80
  )
81
  temperature = gr.Slider(label="Temperature", value=0.0, minimum=0.0, maximum=1.0)
82
  max_tokens = gr.Slider(label="Max Tokens", value=4096, minimum=1, maximum=4096)
 
83
 
84
 
85
  demo = gr.ChatInterface(
 
90
  system_prompt,
91
  temperature,
92
  max_tokens,
 
93
  ],
94
+ description="Claude Chatbot, Clone the space and add your own API key in the 'additional inputs' section",
95
  fill_height=True,
96
  )
97