This commit is contained in:
marko-kraemer 2025-04-21 18:16:24 +01:00
parent 6a048e94b5
commit 276c740e57
2 changed files with 4 additions and 4 deletions

View File

@ -34,10 +34,10 @@ class SandboxExposeTool(SandboxToolsBase):
{"param_name": "port", "node_type": "content", "path": "."} {"param_name": "port", "node_type": "content", "path": "."}
], ],
example=''' 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 --> <!-- This will generate a public URL that users can access to view the web application -->
<expose-port> <expose-port>
8099 8000
</expose-port> </expose-port>
<!-- Example 2: Expose an API service running on port 3000 --> <!-- Example 2: Expose an API service running on port 3000 -->

View File

@ -212,7 +212,7 @@ function DashboardContent() {
placeholder="Describe what you need help with..." placeholder="Describe what you need help with..."
value={inputValue} value={inputValue}
onChange={setInputValue} onChange={setInputValue}
hideAttachments={true} hideAttachments={false}
/> />
</div> </div>