-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclient.py
More file actions
97 lines (78 loc) · 3.54 KB
/
client.py
File metadata and controls
97 lines (78 loc) · 3.54 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
# 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.
"""FitScript Environment Client."""
from typing import Dict
from openenv.core import EnvClient
from openenv.core.client_types import StepResult
from openenv.core.env_server.types import State
from .models import FitscriptAction, FitscriptObservation
class FitscriptEnv(
EnvClient[FitscriptAction, FitscriptObservation, State]
):
"""
Client for the FitScript Fitness Prescription Environment.
Maintains a persistent WebSocket connection to the environment server,
enabling efficient multi-step interactions.
Each client instance has its own dedicated environment session on the server.
The server holds the task scenario and grader state; the client sends
prescriptions and receives scored observations.
Example — connect to a running server:
>>> from FitScript import FitscriptAction, FitscriptEnv
>>> env = FitscriptEnv(base_url="http://localhost:8000")
>>> result = env.reset()
>>> print(result.observation.client_scenario)
>>> result = env.step(FitscriptAction(message="Your prescription here..."))
>>> print(result.observation.feedback)
>>> print(result.reward)
>>> env.close()
Example — launch from Docker image:
>>> env = FitscriptEnv.from_docker_image("fitscript-env:latest")
>>> try:
... result = env.reset()
... result = env.step(FitscriptAction(message="..."))
... finally:
... env.close()
"""
def _step_payload(self, action: FitscriptAction) -> Dict:
"""Convert FitscriptAction to JSON payload for the step message."""
return {"message": action.message}
def _parse_result(self, payload: Dict) -> StepResult[FitscriptObservation]:
"""Parse server response into StepResult[FitscriptObservation]."""
obs_data = payload.get("observation", {})
observation = FitscriptObservation(
# Core echo
echoed_message=obs_data.get("echoed_message", ""),
# Task context
task_id=obs_data.get("task_id", 1),
task_description=obs_data.get("task_description", ""),
client_scenario=obs_data.get("client_scenario", ""),
# Grader feedback
feedback=obs_data.get("feedback", ""),
safety_score=obs_data.get("safety_score", 0.0),
efficacy_score=obs_data.get("efficacy_score", 0.0),
personalization_score=obs_data.get("personalization_score", 0.0),
completeness_score=obs_data.get("completeness_score", 0.0),
checks_passed=obs_data.get("checks_passed", []),
checks_failed=obs_data.get("checks_failed", []),
# Episode tracking
step_number=obs_data.get("step_number", 0),
max_steps=obs_data.get("max_steps", 3),
# OpenEnv base fields
done=payload.get("done", False),
reward=payload.get("reward"),
metadata=obs_data.get("metadata", {}),
)
return StepResult(
observation=observation,
reward=payload.get("reward"),
done=payload.get("done", False),
)
def _parse_state(self, payload: Dict) -> State:
"""Parse server response into State object."""
return State(
episode_id=payload.get("episode_id"),
step_count=payload.get("step_count", 0),
)