Spaces:
Sleeping
Sleeping
File size: 9,208 Bytes
18feac5 | 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 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 | import asyncio
import json
import os
import textwrap
from typing import Any, List, Optional
from openai import OpenAI
from tool_use_env.client import ToolUseEnv
from tool_use_env.models import ToolUseAction
from tool_use_env.tasks import TASK_SEQUENCE
LOCAL_IMAGE_NAME = os.getenv("LOCAL_IMAGE_NAME")
API_BASE_URL = os.getenv("API_BASE_URL", "https://router.huggingface.co/v1")
MODEL_NAME = os.getenv("MODEL_NAME", "meta-llama/Llama-3.1-8B-Instruct")
API_KEY = os.getenv("HF_TOKEN") or os.getenv("OPENAI_API_KEY") or os.getenv("API_KEY")
ENV_BASE_URL = os.getenv("ENV_BASE_URL", "http://127.0.0.1:8000")
BENCHMARK = os.getenv("MY_ENV_V4_BENCHMARK", "support_ops_env")
MAX_STEPS = 6
TEMPERATURE = 0.0
MAX_TOKENS = 220
SYSTEM_PROMPT = textwrap.dedent(
"""
You are operating a customer-support workflow environment.
Your job is to gather the minimum necessary evidence, draft a short customer reply,
and submit the correct final resolution code.
Reply with JSON only using this schema:
{
"action_type": "review_ticket|inspect_artifact|search_policy|draft_reply|submit_resolution",
"artifact_id": "optional string",
"query": "optional string",
"message": "optional string",
"resolution_code": "optional string"
}
Use concise messages. Prefer exact artifact ids and exact resolution codes shown in the observation.
"""
).strip()
def log_start(task: str, env: str, model: str) -> None:
print(f"[START] task={task} env={env} model={model}", flush=True)
def log_step(step: int, action: str, reward: float, done: bool, error: Optional[str]) -> None:
error_val = error if error else "null"
print(
f"[STEP] step={step} action={action} reward={reward:.2f} "
f"done={str(done).lower()} error={error_val}",
flush=True,
)
def log_end(success: bool, steps: int, score: float, rewards: List[float]) -> None:
rewards_str = ",".join(f"{reward:.2f}" for reward in rewards)
print(
f"[END] success={str(success).lower()} steps={steps} score={score:.3f} rewards={rewards_str}",
flush=True,
)
def _serialize_action(action: ToolUseAction) -> str:
payload = {"action_type": action.action_type}
if action.artifact_id:
payload["artifact_id"] = action.artifact_id
if action.query:
payload["query"] = action.query
if action.message:
payload["message"] = action.message.replace("\n", " ").strip()
if action.resolution_code:
payload["resolution_code"] = action.resolution_code
return json.dumps(payload, ensure_ascii=True, separators=(",", ":"))
def _fallback_action(observation: Any) -> ToolUseAction:
evidence = set(observation.collected_evidence)
task_id = observation.task_id
if "ticket" not in evidence:
return ToolUseAction(action_type="review_ticket")
task_plans = {
"damaged-mug-replacement": [
ToolUseAction(action_type="inspect_artifact", artifact_id="order"),
ToolUseAction(action_type="search_policy", query="damaged_items"),
ToolUseAction(
action_type="draft_reply",
message=(
"We are sending a replacement within 48 hours. "
"There is no need to return the broken mug."
),
),
ToolUseAction(action_type="submit_resolution", resolution_code="send_replacement"),
],
"duplicate-charge-refund": [
ToolUseAction(action_type="inspect_artifact", artifact_id="order"),
ToolUseAction(action_type="inspect_artifact", artifact_id="payment"),
ToolUseAction(action_type="search_policy", query="duplicate_charge"),
ToolUseAction(
action_type="draft_reply",
message=(
"We confirmed the duplicate charge and issued a refund. "
"You should see the refund in 3-5 business days."
),
),
ToolUseAction(
action_type="submit_resolution",
resolution_code="refund_duplicate_charge",
),
],
"account-takeover-fraud": [
ToolUseAction(action_type="inspect_artifact", artifact_id="account"),
ToolUseAction(action_type="inspect_artifact", artifact_id="risk_log"),
ToolUseAction(action_type="search_policy", query="account_takeover"),
ToolUseAction(
action_type="draft_reply",
message=(
"We locked your account immediately and escalated this to our fraud team. "
"You will receive an update within 24 hours."
),
),
ToolUseAction(
action_type="submit_resolution",
resolution_code="lock_account_and_escalate_fraud",
),
],
}
plan = task_plans[task_id]
for candidate in plan:
if candidate.action_type == "inspect_artifact":
if f"artifact:{candidate.artifact_id}" not in evidence:
return candidate
elif candidate.action_type == "search_policy":
if f"policy:{candidate.query}" not in evidence:
return candidate
elif candidate.action_type == "draft_reply" and not observation.last_tool_result.startswith("Draft saved"):
return candidate
elif candidate.action_type == "submit_resolution":
return candidate
return ToolUseAction(action_type="submit_resolution", resolution_code=observation.available_resolution_codes[0])
def _prompt_for_observation(step: int, observation: Any) -> str:
return textwrap.dedent(
f"""
Step: {step}
Task ID: {observation.task_id}
Difficulty: {observation.difficulty}
Objective: {observation.objective}
Customer message: {observation.customer_message}
Workspace summary: {observation.workspace_summary}
Collected evidence: {observation.collected_evidence}
Available resolution codes: {observation.available_resolution_codes}
Last tool result: {observation.last_tool_result}
Last action error: {observation.last_action_error}
Remaining steps: {observation.remaining_steps}
Return the single best next action as JSON.
"""
).strip()
def _model_action(client: OpenAI, step: int, observation: Any) -> ToolUseAction:
fallback = _fallback_action(observation)
if not API_KEY:
return fallback
try:
completion = client.chat.completions.create(
model=MODEL_NAME,
messages=[
{"role": "system", "content": SYSTEM_PROMPT},
{"role": "user", "content": _prompt_for_observation(step, observation)},
],
temperature=TEMPERATURE,
max_tokens=MAX_TOKENS,
response_format={"type": "json_object"},
)
raw = (completion.choices[0].message.content or "").strip()
data = json.loads(raw)
return ToolUseAction(
action_type=data.get("action_type", fallback.action_type),
artifact_id=data.get("artifact_id"),
query=data.get("query"),
message=data.get("message"),
resolution_code=data.get("resolution_code"),
)
except Exception:
return fallback
async def _connect_env() -> ToolUseEnv:
if LOCAL_IMAGE_NAME:
return await ToolUseEnv.from_docker_image(LOCAL_IMAGE_NAME)
env = ToolUseEnv(base_url=ENV_BASE_URL)
await env.connect()
return env
async def run_task(client: OpenAI, env: ToolUseEnv, task_id: str) -> float:
rewards: List[float] = []
steps_taken = 0
score = 0.0
success = False
log_start(task=task_id, env=BENCHMARK, model=MODEL_NAME)
try:
result = await env.reset(task_id=task_id, seed=7)
observation = result.observation
for step in range(1, MAX_STEPS + 1):
if result.done:
break
action = _model_action(client, step, observation)
action_str = _serialize_action(action)
result = await env.step(action)
observation = result.observation
reward = float(result.reward or 0.0)
done = bool(result.done)
error = observation.last_action_error
rewards.append(reward)
steps_taken = step
log_step(step=step, action=action_str, reward=reward, done=done, error=error)
if done:
break
state = await env.state()
score = float(state.final_score)
success = score >= 0.8
finally:
log_end(success=success, steps=steps_taken, score=score, rewards=rewards)
return score
async def main() -> None:
client = OpenAI(base_url=API_BASE_URL, api_key=API_KEY or "missing")
env = await _connect_env()
try:
scores = []
for task_id in TASK_SEQUENCE:
score = await run_task(client, env, task_id)
scores.append(score)
finally:
await env.close()
if __name__ == "__main__":
asyncio.run(main())
|