mirror of https://github.com/kortix-ai/suna.git
Compare commits
11 Commits
89560ee66e
...
30a899aed5
Author | SHA1 | Date |
---|---|---|
|
30a899aed5 | |
|
98ca19b6c3 | |
|
e129709d96 | |
|
2d5961d81f | |
|
90ee3585cb | |
|
116050f152 | |
|
2113d8739b | |
|
c9c07c4860 | |
|
9a2ae7e09a | |
|
f6174e034f | |
|
2b22aed8b0 |
|
@ -20,7 +20,7 @@ You can modify the sandbox environment for development or to add new capabilitie
|
||||||
```
|
```
|
||||||
cd backend/sandbox/docker
|
cd backend/sandbox/docker
|
||||||
docker compose build
|
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
|
3. Test your changes locally using docker-compose
|
||||||
|
|
||||||
|
|
|
@ -419,7 +419,7 @@ app.post('/api/init', async (req, res) => {
|
||||||
const {api_key} = req.body;
|
const {api_key} = req.body;
|
||||||
const result = await browserAutomation.init(api_key);
|
const result = await browserAutomation.init(api_key);
|
||||||
|
|
||||||
if (result.status === "initialized") {
|
if (result.status === "initialized" || result.status === "healthy") {
|
||||||
res.status(200).json({
|
res.status(200).json({
|
||||||
"status": "healthy",
|
"status": "healthy",
|
||||||
"service": "browserApi"
|
"service": "browserApi"
|
||||||
|
|
|
@ -6,7 +6,7 @@ services:
|
||||||
dockerfile: ${DOCKERFILE:-Dockerfile}
|
dockerfile: ${DOCKERFILE:-Dockerfile}
|
||||||
args:
|
args:
|
||||||
TARGETPLATFORM: ${TARGETPLATFORM:-linux/amd64}
|
TARGETPLATFORM: ${TARGETPLATFORM:-linux/amd64}
|
||||||
image: kortix/suna:0.1.3.20
|
image: kortix/suna:0.1.3.21
|
||||||
ports:
|
ports:
|
||||||
- "6080:6080" # noVNC web interface
|
- "6080:6080" # noVNC web interface
|
||||||
- "5901:5901" # VNC port
|
- "5901:5901" # VNC port
|
||||||
|
|
|
@ -308,8 +308,8 @@ class Configuration:
|
||||||
STRIPE_PRODUCT_ID_STAGING: str = 'prod_SCgIj3G7yPOAWY'
|
STRIPE_PRODUCT_ID_STAGING: str = 'prod_SCgIj3G7yPOAWY'
|
||||||
|
|
||||||
# Sandbox configuration
|
# Sandbox configuration
|
||||||
SANDBOX_IMAGE_NAME = "kortix/suna:0.1.3.20"
|
SANDBOX_IMAGE_NAME = "kortix/suna:0.1.3.21"
|
||||||
SANDBOX_SNAPSHOT_NAME = "kortix/suna:0.1.3.20"
|
SANDBOX_SNAPSHOT_NAME = "kortix/suna:0.1.3.21"
|
||||||
SANDBOX_ENTRYPOINT = "/usr/bin/supervisord -n -c /etc/supervisor/conf.d/supervisord.conf"
|
SANDBOX_ENTRYPOINT = "/usr/bin/supervisord -n -c /etc/supervisor/conf.d/supervisord.conf"
|
||||||
|
|
||||||
# LangFuse configuration
|
# LangFuse configuration
|
||||||
|
|
4
setup.py
4
setup.py
|
@ -687,9 +687,9 @@ class SetupWizard:
|
||||||
)
|
)
|
||||||
print_info("Create a snapshot with these exact settings:")
|
print_info("Create a snapshot with these exact settings:")
|
||||||
print_info(
|
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(
|
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(
|
print_info(
|
||||||
f" - Entrypoint:\t{Colors.GREEN}/usr/bin/supervisord -n -c /etc/supervisor/conf.d/supervisord.conf{Colors.ENDC}"
|
f" - Entrypoint:\t{Colors.GREEN}/usr/bin/supervisord -n -c /etc/supervisor/conf.d/supervisord.conf{Colors.ENDC}"
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue