Compare commits

...

11 Commits

Author SHA1 Message Date
Bobbie 30a899aed5
Merge 3b99797898 into 98ca19b6c3 2025-10-09 09:27:49 +05:30
Krishav 98ca19b6c3
Merge pull request #1793 from KrishavRajSingh/main
Revert "fiix: get usage info in case of tool"
2025-10-09 03:53:28 +05:30
Krishav Raj Singh e129709d96 Revert "fiix: get usage info in case of tool"
This reverts commit 90ee3585cb.
2025-10-09 03:52:48 +05:30
Krishav 2d5961d81f
Merge pull request #1792 from KrishavRajSingh/main
fiix: get usage info in case of tool
2025-10-09 01:26:06 +05:30
Krishav Raj Singh 90ee3585cb fiix: get usage info in case of tool 2025-10-09 01:25:34 +05:30
Krishav 116050f152
Merge pull request #1790 from KrishavRajSingh/main
fix: check healthy status when init
2025-10-08 15:43:05 +05:30
Krishav 2113d8739b
Merge branch 'kortix-ai:main' into main 2025-10-08 15:41:55 +05:30
Krishav Raj Singh c9c07c4860 update sandbox 2025-10-08 15:34:06 +05:30
Krishav Raj Singh 9a2ae7e09a fix: check healthy when init 2025-10-08 15:33:26 +05:30
Bobbie f6174e034f
Merge pull request #1789 from escapade-mckv/triggers-display
fix: infinite render
2025-10-08 15:14:03 +05:30
Bobbie 2b22aed8b0
Merge pull request #1788 from escapade-mckv/triggers-display
Triggers display
2025-10-08 15:04:29 +05:30
5 changed files with 7 additions and 7 deletions

View File

@ -20,7 +20,7 @@ You can modify the sandbox environment for development or to add new capabilitie
```
cd backend/sandbox/docker
docker compose build
docker push kortix/suna:0.1.3.20
docker push kortix/suna:0.1.3.21
```
3. Test your changes locally using docker-compose

View File

@ -419,7 +419,7 @@ app.post('/api/init', async (req, res) => {
const {api_key} = req.body;
const result = await browserAutomation.init(api_key);
if (result.status === "initialized") {
if (result.status === "initialized" || result.status === "healthy") {
res.status(200).json({
"status": "healthy",
"service": "browserApi"

View File

@ -6,7 +6,7 @@ services:
dockerfile: ${DOCKERFILE:-Dockerfile}
args:
TARGETPLATFORM: ${TARGETPLATFORM:-linux/amd64}
image: kortix/suna:0.1.3.20
image: kortix/suna:0.1.3.21
ports:
- "6080:6080" # noVNC web interface
- "5901:5901" # VNC port

View File

@ -308,8 +308,8 @@ class Configuration:
STRIPE_PRODUCT_ID_STAGING: str = 'prod_SCgIj3G7yPOAWY'
# Sandbox configuration
SANDBOX_IMAGE_NAME = "kortix/suna:0.1.3.20"
SANDBOX_SNAPSHOT_NAME = "kortix/suna:0.1.3.20"
SANDBOX_IMAGE_NAME = "kortix/suna:0.1.3.21"
SANDBOX_SNAPSHOT_NAME = "kortix/suna:0.1.3.21"
SANDBOX_ENTRYPOINT = "/usr/bin/supervisord -n -c /etc/supervisor/conf.d/supervisord.conf"
# LangFuse configuration

View File

@ -687,9 +687,9 @@ class SetupWizard:
)
print_info("Create a snapshot with these exact settings:")
print_info(
f" - Name:\t\t{Colors.GREEN}kortix/suna:0.1.3.20{Colors.ENDC}")
f" - Name:\t\t{Colors.GREEN}kortix/suna:0.1.3.21{Colors.ENDC}")
print_info(
f" - Snapshot name:\t{Colors.GREEN}kortix/suna:0.1.3.20{Colors.ENDC}")
f" - Snapshot name:\t{Colors.GREEN}kortix/suna:0.1.3.21{Colors.ENDC}")
print_info(
f" - Entrypoint:\t{Colors.GREEN}/usr/bin/supervisord -n -c /etc/supervisor/conf.d/supervisord.conf{Colors.ENDC}"
)