Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -202,6 +202,10 @@ def execute_command(command):
|
|
| 202 |
# --- Gradio UI ---
|
| 203 |
with gr.Blocks(title="Novita Sandbox App") as demo:
|
| 204 |
gr.Markdown("## 🧠 Novita Sandbox Agent")
|
|
|
|
|
|
|
|
|
|
|
|
|
| 205 |
|
| 206 |
with gr.Row(equal_height=True):
|
| 207 |
# Left: Chat Interface
|
|
@@ -246,4 +250,4 @@ atexit.register(lambda: (sandbox.kill(), print("[DEBUG] Sandbox terminated. 👋
|
|
| 246 |
|
| 247 |
if __name__ == "__main__":
|
| 248 |
demo.launch()
|
| 249 |
-
|
|
|
|
| 202 |
# --- Gradio UI ---
|
| 203 |
with gr.Blocks(title="Novita Sandbox App") as demo:
|
| 204 |
gr.Markdown("## 🧠 Novita Sandbox Agent")
|
| 205 |
+
gr.Markdown(
|
| 206 |
+
"This app is an AI-powered **code agent** that lets you chat with intelligent assistants backed by **Novita AI LLMs**. These agents can write, read, and execute code safely inside a **Novita sandbox**, providing a secure environment for running commands, testing scripts, and managing files, all through an intuitive chat interface with model selection and command execution built right in."
|
| 207 |
+
)
|
| 208 |
+
|
| 209 |
|
| 210 |
with gr.Row(equal_height=True):
|
| 211 |
# Left: Chat Interface
|
|
|
|
| 250 |
|
| 251 |
if __name__ == "__main__":
|
| 252 |
demo.launch()
|
| 253 |
+
|