Skip to content

Commit

Permalink
fix: fix import bug
Browse files Browse the repository at this point in the history
  • Loading branch information
aschung01 committed Sep 11, 2024
1 parent e82fc88 commit 9d97189
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

setup(
name="weavel",
version="1.9.0",
version="1.9.1",
packages=find_namespace_packages(),
entry_points={},
description="Weavel, Prompt Optimization and Evaluation for LLM Applications",
Expand Down
3 changes: 1 addition & 2 deletions weavel/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,13 @@
from dotenv import load_dotenv
from weavel._worker import Worker

# from weavel.types.instances import Session, Span, Trace
from weavel.object_clients import (
GenerationClient,
SessionClient,
SpanClient,
TraceClient,
)
from weavel.types.datasets import Dataset, DatasetItem, Prompt, PromptVersion
from weavel.types import Dataset, DatasetItem, Prompt, PromptVersion

load_dotenv()

Expand Down

0 comments on commit 9d97189

Please sign in to comment.