Spaces:
Runtime error
Runtime error
File size: 2,040 Bytes
cd601a6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 | # Copyright (c) Meta Platforms, Inc. and affiliates.
# All rights reserved.
#
# This source code is licensed under the BSD-style license found in the
# LICENSE file in the root directory of this source tree.
"""
Data models for the Self-Healing DevOps Sandbox Environment.
Defines the Action and Observation types used by the RL agent to interact
with a broken Node.js backend running inside a Docker container.
"""
from typing import Any, Dict
from pydantic import Field
from openenv.core.env_server.types import Action, Observation
class BashAction(Action):
"""Action: a bash command to execute inside the Docker sandbox.
The agent sends shell commands (ls, cat, sed, node, etc.) to diagnose
and repair the broken Node.js application.
"""
command: str = Field(
...,
description=(
"The bash command to execute in the sandbox terminal "
"(e.g., 'ls -la', 'cat server.js', "
"'sed -i s/old/new/ file.js')."
),
)
class TerminalObservation(Observation):
"""Observation returned after executing a bash command.
Includes stdout/stderr from the command, working directory context,
the current task identifier, and the grader's partial score.
"""
stdout: str = Field(
default="",
description="Standard output from the executed command.",
)
stderr: str = Field(
default="",
description="Standard error from the executed command, if any.",
)
current_dir: str = Field(
default="/app",
description="The current working directory inside the container.",
)
task_id: str = Field(
default="devops_sandbox",
description="Identifier for the current task scenario.",
)
grader_score: float = Field(
default=0.0,
ge=0.0,
le=1.0,
description="The grader's partial reward (0.0 to 1.0).",
)
grader_feedback: str = Field(
default="",
description="Human-readable feedback from the grader.",
) |