bogeumkim commited on
Commit
c075bcc
Β·
verified Β·
1 Parent(s): 4d6a8f3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -6
app.py CHANGED
@@ -37,6 +37,7 @@ EMBED_HTML = '''<div style="display: flex; justify-content: center; align-items:
37
 
38
  with gr.Blocks(gr.themes.Origin()) as demo:
39
  gr.HTML("<h1 style='text-align:center;'>πŸ€– ARA: Auto README.md Agent πŸ“</h1>")
 
40
  with gr.Tabs():
41
  with gr.TabItem("README.md Generator"):
42
  repo_input = gr.Textbox(
@@ -72,22 +73,24 @@ with gr.Blocks(gr.themes.Origin()) as demo:
72
  with gr.TabItem("About"):
73
  with gr.Row():
74
  with gr.Column(scale=1):
75
- gr.Markdown("# πŸ‘©β€πŸ« Service Description")
76
  gr.Markdown(
77
- "This service generates README.md files for GitHub repositories using AI agents."
 
 
78
  )
79
  with gr.Column(scale=1):
80
  gr.Markdown("# πŸ”› Current Features")
81
  gr.Markdown(
82
- "- Generate README.md from GitHub repo\n"
83
- "- Preview generated README\n"
84
  "- Demo video included"
85
  )
86
  gr.Markdown("# πŸ”œ Future Features")
87
  gr.Markdown(
88
  "- Support for multiple branches\n"
89
- "- Enhanced code analysis\n"
90
- "- User authentication"
91
  )
92
 
93
  if __name__ == "__main__":
 
37
 
38
  with gr.Blocks(gr.themes.Origin()) as demo:
39
  gr.HTML("<h1 style='text-align:center;'>πŸ€– ARA: Auto README.md Agent πŸ“</h1>")
40
+ gr.HTML('<p style="text-align:center; font-size:1.2em; color:#555;">Save your README.md writing time!</p>')
41
  with gr.Tabs():
42
  with gr.TabItem("README.md Generator"):
43
  repo_input = gr.Textbox(
 
73
  with gr.TabItem("About"):
74
  with gr.Row():
75
  with gr.Column(scale=1):
76
+ gr.Markdown("# πŸ‘©β€πŸ« Description")
77
  gr.Markdown(
78
+ "This service generates README.md files for GitHub repositories using AI agents.\n\n"
79
+ "**Notice:** This project still has many areas for improvement, so I plan to continue working on it even after the hackathon. "
80
+ "If you're interested, feel free to contact me on [LinkedIn](https://www.linkedin.com/in/po6eumkim/) or Discord(@bogeumkim)!"
81
  )
82
  with gr.Column(scale=1):
83
  gr.Markdown("# πŸ”› Current Features")
84
  gr.Markdown(
85
+ "- Generate README.md draft from GitHub repository link\n"
86
+ "- Preview and edit generated README\n"
87
  "- Demo video included"
88
  )
89
  gr.Markdown("# πŸ”œ Future Features")
90
  gr.Markdown(
91
  "- Support for multiple branches\n"
92
+ "- Support for local environment\n"
93
+ "- Enhanced code analysis"
94
  )
95
 
96
  if __name__ == "__main__":