mirror of https://github.com/kortix-ai/suna.git
wip
This commit is contained in:
parent
6a048e94b5
commit
276c740e57
|
@ -34,10 +34,10 @@ class SandboxExposeTool(SandboxToolsBase):
|
|||
{"param_name": "port", "node_type": "content", "path": "."}
|
||||
],
|
||||
example='''
|
||||
<!-- Example 1: Expose a web server running on port 8099 -->
|
||||
<!-- Example 1: Expose a web server running on port 8000 -->
|
||||
<!-- This will generate a public URL that users can access to view the web application -->
|
||||
<expose-port>
|
||||
8099
|
||||
8000
|
||||
</expose-port>
|
||||
|
||||
<!-- Example 2: Expose an API service running on port 3000 -->
|
||||
|
|
|
@ -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}
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
|
Loading…
Reference in New Issue