Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
@@ -103,7 +103,7 @@ def gen(input):
|
|
103 |
if char == '\n':
|
104 |
out = remove_caseifer(generated_text)
|
105 |
return input + out
|
106 |
-
|
107 |
md = """This is some code:
|
108 |
|
109 |
hello
|
@@ -112,7 +112,7 @@ hello
|
|
112 |
def fn(x, y, z):
|
113 |
print(x, y, z)
|
114 |
"""
|
115 |
-
|
116 |
with gr.Blocks() as demo:
|
117 |
chatbot = gr.Chatbot()
|
118 |
msg = gr.Textbox()
|
|
|
103 |
if char == '\n':
|
104 |
out = remove_caseifer(generated_text)
|
105 |
return input + out
|
106 |
+
|
107 |
md = """This is some code:
|
108 |
|
109 |
hello
|
|
|
112 |
def fn(x, y, z):
|
113 |
print(x, y, z)
|
114 |
"""
|
115 |
+
chat_history []
|
116 |
with gr.Blocks() as demo:
|
117 |
chatbot = gr.Chatbot()
|
118 |
msg = gr.Textbox()
|