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
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ description = "ValidMind Library"
license = "Commercial License"
name = "validmind"
readme = "README.pypi.md"
version = "2.9.1"
version = "2.9.2"

[tool.poetry.dependencies]
aiohttp = {extras = ["speedups"], version = "*"}
Expand Down
2 changes: 1 addition & 1 deletion validmind/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "2.9.1"
__version__ = "2.9.2"
10 changes: 1 addition & 9 deletions validmind/ai/test_descriptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,15 +191,7 @@ def get_result_description(
not in ["0", "false"]
)

# TODO: fix circular import
from validmind.ai.utils import is_configured

if (
should_generate
and (tables or figures)
and llm_descriptions_enabled
and is_configured()
):
if should_generate and (tables or figures) and llm_descriptions_enabled:
# get description future and set it as the description in the metadata
# this will lazily retrieved so it can run in the background in parallel
description = background_generate_description(
Expand Down