Spaces:
Runtime error
Runtime error
Commit
·
49e1c3f
1
Parent(s):
9ec3e03
Add footer
Browse files
app.py
CHANGED
@@ -182,5 +182,12 @@ with gr.Blocks(title='Talk to chatGPT') as demo:
|
|
182 |
inputs=[prompt_input, chat_history],
|
183 |
outputs=[chatbot, chat_history],
|
184 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
185 |
|
186 |
demo.launch(debug = True)
|
|
|
182 |
inputs=[prompt_input, chat_history],
|
183 |
outputs=[chatbot, chat_history],
|
184 |
)
|
185 |
+
gr.HTML('''
|
186 |
+
<div class="footer">
|
187 |
+
<p>Whisper Model by <a href="https://github.com/openai/whisper" style="text-decoration: underline;" target="_blank">OpenAI</a> -
|
188 |
+
<a href="https://chat.openai.com/chat" target="_blank">chatGPT</a> by <a href="https://openai.com/" style="text-decoration: underline;" target="_blank">OpenAI</a>
|
189 |
+
</p>
|
190 |
+
</div>
|
191 |
+
''')
|
192 |
|
193 |
demo.launch(debug = True)
|