Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "uipath-dev"
version = "0.0.81"
version = "0.0.82"
description = "UiPath Developer Console"
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.11"
Expand All @@ -10,7 +10,7 @@ dependencies = [
"pyperclip>=1.11.0, <2.0.0",
"fastapi>=0.128.8",
"uvicorn[standard]>=0.40.0",
"uipath>=2.11.7, <2.12.0",
"uipath>=2.12.0, <2.13.0",
"aiosqlite>=0.20.0",
"pywinpty>=2.0.0; sys_platform == 'win32'",
"mcp[cli]>=1.0.0",
Expand Down
8 changes: 4 additions & 4 deletions src/uipath/dev/server/routes/evaluators.py
Original file line number Diff line number Diff line change
Expand Up @@ -240,10 +240,10 @@ def _discover_local_evaluators() -> list[dict[str, Any]]:
BaseEvaluatorConfig,
)
from uipath.eval.models import (
AgentExecution,
ErrorEvaluationResult,
EvaluationResult,
NumericEvaluationResult,
WorkloadExecution,
)


Expand All @@ -261,7 +261,7 @@ class {class_name}Config(BaseEvaluatorConfig[{class_name}Criteria]):


class {class_name}(
BaseEvaluator[{class_name}Criteria, {class_name}Config, None]
BaseEvaluator[{class_name}Criteria, {class_name}Config, str]
):
"""{description}"""

Expand All @@ -271,11 +271,11 @@ def get_evaluator_id(cls) -> str:

async def evaluate(
self,
agent_execution: AgentExecution,
workload_execution: WorkloadExecution,
evaluation_criteria: {class_name}Criteria,
) -> EvaluationResult:
try:
output = agent_execution.agent_output
output = workload_execution.workload_output
# TODO: implement evaluation logic
score = 0.0
return NumericEvaluationResult(score=score, details="Not implemented yet")
Expand Down
79 changes: 65 additions & 14 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading