freddyaboulton's picture
Upload folder using huggingface_hub
9d81e05 verified
raw
history blame contribute delete
646 Bytes
import gradio as gr
import random
example_code = """
Here's an example Python lambda function:
lambda x: x + {}
Is this correct?
"""
def chat(message, history):
if message == "Yes, that's correct.":
return "Great!"
else:
return gr.ChatMessage(
content=example_code.format(random.randint(1, 100)),
options=[
{"value": "Yes, that's correct.", "label": "Yes"},
{"value": "No"}
]
)
demo = gr.ChatInterface(
chat,
examples=["Write an example Python lambda function."],
api_name="chat",
)
if __name__ == "__main__":
demo.launch()