update app.py and requirements.txt
Browse files- app.py +9 -2
- requirements.txt +1 -2
app.py
CHANGED
|
@@ -129,8 +129,15 @@ with gr.Blocks(css=css) as demo:
|
|
| 129 |
state = gr.State(value={})
|
| 130 |
|
| 131 |
gr.Markdown("<h1><center>CogsGPT</center></h1>")
|
| 132 |
-
gr.Markdown("<p align='center' style='font-size: 20px;'>A
|
| 133 |
-
gr.Markdown("<p align='center' style='font-size:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 134 |
|
| 135 |
with gr.Row():
|
| 136 |
with gr.Column(scale=0.85):
|
|
|
|
| 129 |
state = gr.State(value={})
|
| 130 |
|
| 131 |
gr.Markdown("<h1><center>CogsGPT</center></h1>")
|
| 132 |
+
gr.Markdown("<p align='center' style='font-size: 20px;'>A conversational system which integrates ChatGPT with Azure Cognitive Services to achieve multimodal capabilities.</p>")
|
| 133 |
+
gr.Markdown("<p align='center' style='font-size: 18px;'>If you find it useful, please consider giving it a star on <a href='https://github.com/whiskyboy/cogsgpt'>Github</a>! :)</p>")
|
| 134 |
+
gr.Markdown("""
|
| 135 |
+
<div style="text-align: center;">
|
| 136 |
+
<img alt="GitHub watchers" src="https://img.shields.io/github/watchers/whiskyboy/cogsgpt?style=social" style="display: inline-block;">
|
| 137 |
+
<img alt="GitHub forks" src="https://img.shields.io/github/forks/whiskyboy/cogsgpt?style=social" style="display: inline-block;">
|
| 138 |
+
<img alt="GitHub Repo stars" src="https://img.shields.io/github/stars/whiskyboy/cogsgpt?style=social" style="display: inline-block;">
|
| 139 |
+
</div>
|
| 140 |
+
""")
|
| 141 |
|
| 142 |
with gr.Row():
|
| 143 |
with gr.Column(scale=0.85):
|
requirements.txt
CHANGED
|
@@ -1,2 +1 @@
|
|
| 1 |
-
|
| 2 |
-
cogsgpt==0.0.4
|
|
|
|
| 1 |
+
cogsgpt==0.0.5
|
|
|