Spaces:
Running
Running
From md to html
Browse files
app.py
CHANGED
@@ -110,24 +110,27 @@ def ui_main():
|
|
110 |
margin-bottom: 10px;
|
111 |
margin-left: 5px;
|
112 |
margin-right: 5px;
|
|
|
113 |
}
|
114 |
""",
|
115 |
theme="ParityError/Interstellar",
|
116 |
) as demo:
|
117 |
-
gr.
|
118 |
"""
|
119 |
-
|
120 |
-
|
|
|
121 |
|
122 |
-
|
123 |
-
|
124 |
|
125 |
-
|
126 |
-
|
127 |
|
128 |
-
|
129 |
|
130 |
-
|
|
|
131 |
"""
|
132 |
)
|
133 |
|
|
|
110 |
margin-bottom: 10px;
|
111 |
margin-left: 5px;
|
112 |
margin-right: 5px;
|
113 |
+
text-align: center;
|
114 |
}
|
115 |
""",
|
116 |
theme="ParityError/Interstellar",
|
117 |
) as demo:
|
118 |
+
gr.HTML(
|
119 |
"""
|
120 |
+
<div style="text-align: center;">
|
121 |
+
<img src="assets/logo_header.png" alt="Header Image" />
|
122 |
+
<h1>SynthGenAI Dataset Generator</h1>
|
123 |
|
124 |
+
<h2>Overview π§</h2>
|
125 |
+
<p>SynthGenAI is designed to be modular and can be easily extended to include different API providers for LLMs and new features.</p>
|
126 |
|
127 |
+
<h2>Why SynthGenAI? π€</h2>
|
128 |
+
<p>Interest in synthetic data generation has surged recently, driven by the growing recognition of data as a critical asset in AI development. Synthetic data generation addresses challenges by allowing us to create diverse and useful datasets using current pre-trained Large Language Models (LLMs).</p>
|
129 |
|
130 |
+
<a href="https://github.com/Shekswess/synthgenai/tree/main">GitHub Repository</a> | <a href="https://shekswess.github.io/synthgenai/">Documentation</a>
|
131 |
|
132 |
+
<p>For more information on which LLMs are allowed and how they can be used, please refer to the <a href="https://shekswess.github.io/synthgenai/llm_providers/">documentation</a>.</p>
|
133 |
+
</div>
|
134 |
"""
|
135 |
)
|
136 |
|