Skip to content

Commit 3c8a005

Browse files
author
camel-docs-bot
committed
Auto-update documentation after merge [skip ci]
1 parent 648c4bd commit 3c8a005

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

docs/mintlify/reference/camel.runtimes.daytona_runtime.mdx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ Requires the Daytona server to be running and an API key configured.
1515

1616
- **api_key** (Optional[str]): The Daytona API key for authentication. If not provided, it will try to use the DAYTONA_API_KEY environment variable. (default: :obj:`None`)
1717
- **api_url** (Optional[str]): The URL of the Daytona server. If not provided, it will try to use the DAYTONA_API_URL environment variable. If none is provided, it will use "http://localhost:8000". (default: :obj:`None`)
18-
- **language** (Optional[str]): The programming language for the sandbox. (default: :obj:`"python"`)
18+
- **language** (`Optional[Literal["python", "typescript", "javascript"]]`): The programming language for the sandbox. (default: :obj:`"python"`)
19+
- **image** (Optional[str]): The Docker image to use for the sandbox. If not provided, a default image based on the language will be used. (default: :obj:`None`)
1920

2021
<a id="camel.runtimes.daytona_runtime.DaytonaRuntime.__init__"></a>
2122

@@ -26,7 +27,8 @@ def __init__(
2627
self,
2728
api_key: Optional[str] = None,
2829
api_url: Optional[str] = None,
29-
language: Optional[str] = 'python'
30+
language: Optional[Literal['python', 'typescript', 'javascript']] = 'python',
31+
image: Optional[str] = None
3032
):
3133
```
3234

0 commit comments

Comments
 (0)