added sandbox and bash tool

This commit is contained in:
2026-02-20 20:00:52 -07:00
parent 8b62f946ca
commit 93ce413c9b
10 changed files with 419 additions and 11 deletions
+7 -1
View File
@@ -1,10 +1,16 @@
import asyncio
from agent.loop import run_session
from sandbox.session import PodmanSandbox
async def run_tui():
await run_session()
print("Starting sandbox....")
async with PodmanSandbox() as sandbox:
print("Sandbox ready")
await run_session(sandbox)
print("Sandbox destroyed")
def main():