Skip to content

Commit

Permalink
Bump Pydantic to V2 (#582)
Browse files Browse the repository at this point in the history
* Bump Pydantic to V2

* Update version number in pyproject.toml

* Add tutorial

* Revert "Add tutorial"

This reverts commit 4f0c854.

* Update imports

* Update import and run black
  • Loading branch information
Dominastorm authored Mar 5, 2024
1 parent 737b82f commit 5f4ad39
Show file tree
Hide file tree
Showing 59 changed files with 1,306 additions and 636 deletions.
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ requires = ["setuptools", "wheel"]

[project]
name = "uptrain"
version = "0.6.6"
version = "0.6.6.post1"
description = "UpTrain - tool to evaluate LLM applications on aspects like factual accuracy, response quality, retrieval quality, tonality, etc."
readme = "README.md"
maintainers = [{ name = "UpTrain AI Team", email = "oss@uptrain.ai" }]
Expand All @@ -20,7 +20,8 @@ classifiers = [
]
keywords = ["uptrain", "ai", "LLM", "evaluation", "hallucinations", "observability", "response quality"]
dependencies = [
"pydantic<1.10.10",
"pydantic",
"pydantic-settings",
"loguru",
"lazy_loader",
"networkx",
Expand Down
419 changes: 340 additions & 79 deletions tests/test_builtins.py

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion uptrain/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"tqdm>=4.0",
],
"st_classic": [
"plotly>=5.0.0",
"plotly>=5.0.0",
"streamlit>=1.23",
"pyarrow>=10.0.0",
],
Expand Down
Loading

0 comments on commit 5f4ad39

Please sign in to comment.