Skip to content

Commit 9d97189

Browse files
committed
fix: fix import bug
1 parent e82fc88 commit 9d97189

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
setup(
1212
name="weavel",
13-
version="1.9.0",
13+
version="1.9.1",
1414
packages=find_namespace_packages(),
1515
entry_points={},
1616
description="Weavel, Prompt Optimization and Evaluation for LLM Applications",

weavel/client.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,13 @@
1313
from dotenv import load_dotenv
1414
from weavel._worker import Worker
1515

16-
# from weavel.types.instances import Session, Span, Trace
1716
from weavel.object_clients import (
1817
GenerationClient,
1918
SessionClient,
2019
SpanClient,
2120
TraceClient,
2221
)
23-
from weavel.types.datasets import Dataset, DatasetItem, Prompt, PromptVersion
22+
from weavel.types import Dataset, DatasetItem, Prompt, PromptVersion
2423

2524
load_dotenv()
2625

0 commit comments

Comments
 (0)