Spaces:
Runtime error
Runtime error
| import dataclasses | |
| from dataclasses import dataclass | |
| from argparse import Namespace | |
| import json | |
| from typing import Any, Dict, List | |
| class EnhancedJSONEncoder(json.JSONEncoder): | |
| def default(self, o): | |
| #if it is a function, use its string name | |
| if dataclasses.is_dataclass(o): | |
| return dataclasses.asdict(o) | |
| elif hasattr(o, '__call__'): | |
| return o.__name__ | |
| elif isinstance(o, Namespace): | |
| return vars(o) | |
| return super().default(o) | |
| class TooLongPromptError(Exception): | |
| pass | |
| class LLMError(Exception): | |
| pass | |
| class EnvException(Exception): | |
| def __init__(self, message): | |
| self.message = message | |
| def __str__(self): | |
| return self.message | |
| class ActionInfo: | |
| name: str | |
| description: str | |
| usage: dict | |
| return_value: str | |
| function: str | |
| is_primitive: bool = False | |
| class Action: | |
| name: str | |
| args: Dict[str, Any] | |
| class Step: | |
| action: Action | |
| observation: str # What was returned | |
| timestamp: float # When the action was taken | |
| class Trace: | |
| steps: List[Step] | |
| low_level_steps: List[Step] | |
| action_infos: Dict[str, ActionInfo] | |
| task_description: str | |