mirror of
https://github.com/All-Hands-AI/OpenHands.git
synced 2026-01-08 22:38:05 -05:00
Release OpenHands v1.0.0 (#12052)
Co-authored-by: mamoodi <mamoodiha@gmail.com> Co-authored-by: Engel Nyst <engel.nyst@gmail.com>
This commit is contained in:
@@ -40,7 +40,7 @@ Two configuration options are required to use the Kubernetes runtime:
|
||||
2. **Runtime Container Image**: Specify the container image to use for the runtime environment
|
||||
```toml
|
||||
[sandbox]
|
||||
runtime_container_image = "docker.openhands.dev/openhands/runtime:0.62-nikolaik"
|
||||
runtime_container_image = "docker.openhands.dev/openhands/runtime:1.0-nikolaik"
|
||||
```
|
||||
|
||||
#### Additional Kubernetes Options
|
||||
|
||||
@@ -21,6 +21,11 @@ class FileSettingsStore(SettingsStore):
|
||||
json_str = await call_sync_from_async(self.file_store.read, self.path)
|
||||
kwargs = json.loads(json_str)
|
||||
settings = Settings(**kwargs)
|
||||
|
||||
# Turn on V1 in OpenHands
|
||||
# We can simplify / remove this as part of V0 removal
|
||||
settings.v1_enabled = True
|
||||
|
||||
return settings
|
||||
except FileNotFoundError:
|
||||
return None
|
||||
|
||||
Reference in New Issue
Block a user