Update app.py
Browse files
app.py
CHANGED
|
@@ -6,10 +6,10 @@ def chat_interface(user_input, selected_model):
|
|
| 6 |
return response
|
| 7 |
|
| 8 |
# List of available models
|
| 9 |
-
models = ["
|
| 10 |
|
| 11 |
# Gradio Interface
|
| 12 |
-
with gr.Blocks(css=".
|
| 13 |
with gr.Row():
|
| 14 |
gr.Markdown(
|
| 15 |
"### Welcome to the Retro Hacker Chat! \n"
|
|
@@ -42,4 +42,3 @@ with gr.Blocks(css=".retro-terminal {background-color: black; color: #00FF00; fo
|
|
| 42 |
|
| 43 |
# Launch the interface
|
| 44 |
demo.launch()
|
| 45 |
-
|
|
|
|
| 6 |
return response
|
| 7 |
|
| 8 |
# List of available models
|
| 9 |
+
models = ["Canstralian/text2shellcommands", "Canstralian/RabbitRedux", "Canstralian/CySec_Known_Exploit_Analyzer"]
|
| 10 |
|
| 11 |
# Gradio Interface
|
| 12 |
+
with gr.Blocks(css="./static/styles.css") as demo:
|
| 13 |
with gr.Row():
|
| 14 |
gr.Markdown(
|
| 15 |
"### Welcome to the Retro Hacker Chat! \n"
|
|
|
|
| 42 |
|
| 43 |
# Launch the interface
|
| 44 |
demo.launch()
|
|
|