Skip to content

Instantly share code, notes, and snippets.

@sunilkumardash9
Created April 28, 2023 18:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sunilkumardash9/f2bd2b4b0a9ce64eb0f252450e4fbc6c to your computer and use it in GitHub Desktop.
Save sunilkumardash9/f2bd2b4b0a9ce64eb0f252450e4fbc6c to your computer and use it in GitHub Desktop.
with gr.Blocks() as demo:
radio = gr.Radio(value='gpt-3.5-turbo', choices=['gpt-3.5-turbo','gpt-4'], label='models')
chatbot = gr.Chatbot(value=[], elem_id="chatbot").style(height=650)
with gr.Row():
with gr.Column(scale=0.70):
txt = gr.Textbox(
show_label=False,
placeholder="Enter text and press enter, or upload an image",
).style(container=False)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment