Spaces:
Runtime error
Runtime error
File size: 618 Bytes
518e2cd 76d9b0d 518e2cd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
import gradio as gr
import json
DEBUG_MODE = False
def echo(text, request: gr.Request):
output_text = {"report1": "SUCCESS"} # Initialize as a dictionary
output_text["report2"] = "You inserted the text:"
output_text["report3"] = text
if request:
# Convert headers to a dictionary and include them in the output_text
output_text["headers"] = dict(request.headers.items())
# Convert the output_text dictionary to a JSON-formatted string
output_text_json = json.dumps(output_text)
return output_text_json
io = gr.Interface(echo, "textbox", "json").launch(share=True) |