diff --git a/backend/agent/tools/sb_expose_tool.py b/backend/agent/tools/sb_expose_tool.py index f593dce1..87f96761 100644 --- a/backend/agent/tools/sb_expose_tool.py +++ b/backend/agent/tools/sb_expose_tool.py @@ -34,10 +34,10 @@ class SandboxExposeTool(SandboxToolsBase): {"param_name": "port", "node_type": "content", "path": "."} ], example=''' - + - 8099 + 8000 diff --git a/frontend/src/app/(dashboard)/dashboard/page.tsx b/frontend/src/app/(dashboard)/dashboard/page.tsx index 8e19f1de..abb5ad54 100644 --- a/frontend/src/app/(dashboard)/dashboard/page.tsx +++ b/frontend/src/app/(dashboard)/dashboard/page.tsx @@ -46,7 +46,7 @@ function DashboardContent() { // 2. Create a new thread for this project const thread = await createThread(newAgent.id); - + // 3. Add the user message to the thread await addUserMessage(thread.thread_id, message.trim()); @@ -212,7 +212,7 @@ function DashboardContent() { placeholder="Describe what you need help with..." value={inputValue} onChange={setInputValue} - hideAttachments={true} + hideAttachments={false} />