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
7 changes: 6 additions & 1 deletion py/plugins/evaluators/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,12 @@ classifiers = [
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries",
]
dependencies = ["genkit", "jsonata-python>=0.5.3", "pydantic>=2.10.5"]
dependencies = [
"genkit",
"jsonata-python>=0.5.3",
"pydantic>=2.10.5",
"strenum>=0.4.15; python_version < '3.11'",
]
description = "Genkit Evaluators Plugin for RAGAS"
license = { text = "Apache-2.0" }
name = "genkit-plugin-evaluators"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@


from collections.abc import Callable
from enum import StrEnum
try:
from enum import StrEnum
except ImportError:
from strenum import StrEnum
from typing import Any

from pydantic import BaseModel, RootModel
Expand Down
2 changes: 2 additions & 0 deletions py/uv.lock

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

Loading