Spaces:
Runtime error
Runtime error
File size: 438 Bytes
e3e9400 |
1 2 3 4 5 6 7 8 9 10 11 12 |
import gradio as gr
import requests
with gr.Blocks() as app:
with gr.Row():
url = "https://raw.githubusercontent.com/argilla-io/synthetic-data-generator/refs/heads/main/README.md"
response = requests.get(url)
readme_content: str = response.text
readme_content = readme_content.split("## Introduction")[1]
readme_content = "## Introduction" + readme_content
gr.Markdown(readme_content)
|