Spaces:
Runtime error
Runtime error
import random | |
import gradio as gr | |
code = 'def hello_world(): return "Hello, world!" print(hello_world())' | |
def prompt(message, history): | |
return gr.Code(value=code,language="python") | |
demo = gr.ChatInterface(prompt, | |
title="codeBot", | |
description="Ask me a question", | |
retry_btn="Retry", | |
undo_btn=None, | |
clear_btn="Clear") | |
demo.launch() |