Shekswess commited on
Commit
f1224f3
Β·
1 Parent(s): 7324d20

From md to html

Browse files
Files changed (1) hide show
  1. app.py +12 -9
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.Markdown(
118
  """
119
- ![Header Image](assets/logo_header.png)
120
- <h1>SynthGenAI Dataset Generator</h1>
 
121
 
122
- ## Overview 🧐
123
- SynthGenAI is designed to be modular and can be easily extended to include different API providers for LLMs and new features.
124
 
125
- ## Why SynthGenAI? πŸ€”
126
- 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).
127
 
128
- [GitHub Repository](https://github.com/Shekswess/synthgenai/tree/main) | [Documentation](https://shekswess.github.io/synthgenai/)
129
 
130
- For more information on which LLMs are allowed and how they can be used, please refer to the [documentation](https://shekswess.github.io/synthgenai/llm_providers/).
 
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