Skip to content

Commit

Permalink
move to trace: rich_*
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewtruong committed Aug 27, 2024
1 parent 906ae55 commit f159a6d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions weave/trace/feedback.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@

from rich.table import Table

from weave import rich_pydantic_util
from weave.client_context import weave_client as weave_client_context
from weave.refs import Refs
from weave.rich_container import AbstractRichContainer
from weave.trace import rich_pydantic_util
from weave.trace.refs import parse_uri
from weave.trace.rich_container import AbstractRichContainer
from weave.trace.rich_refs import Refs
from weave.trace_server import trace_server_interface as tsi
from weave.trace_server.interface.query import Query

Expand Down
2 changes: 1 addition & 1 deletion weave/rich_container.py → weave/trace/rich_container.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

from rich.table import Table

from weave import rich_pydantic_util
from weave.trace import rich_pydantic_util

T = TypeVar("T")

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from rich.console import Console
from rich.table import Table

from . import util
from .. import util


def dict_to_table(d: dict[str, Any]) -> Table:
Expand Down
2 changes: 1 addition & 1 deletion weave/refs.py → weave/trace/rich_refs.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
from rich.table import Table

from weave.client_context import weave_client as weave_client_context
from weave.rich_container import AbstractRichContainer
from weave.trace.refs import AnyRef, CallRef, parse_uri
from weave.trace.rich_container import AbstractRichContainer
from weave.trace.vals import WeaveObject


Expand Down

0 comments on commit f159a6d

Please sign in to comment.