Skip to content

Commit

Permalink
stream_data_interfaces
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewtruong committed Aug 21, 2024
1 parent 63a4745 commit 15af662
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 5 deletions.
3 changes: 2 additions & 1 deletion weave/engine_trace.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
import time
import typing

from . import environment, logs, stream_data_interfaces
from . import environment, logs
from .legacy import stream_data_interfaces


# Thanks co-pilot!
Expand Down
2 changes: 1 addition & 1 deletion weave/legacy/monitoring/langchain.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from langchain.callbacks.tracers.schemas import Run
from wandb.sdk.data_types import trace_tree

from weave import stream_data_interfaces
from weave.legacy import stream_data_interfaces
from weave.legacy.monitoring import StreamTable


Expand Down
3 changes: 2 additions & 1 deletion weave/legacy/monitoring/monitor.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,11 @@
import typing
import uuid

from weave import call_context, errors, stream_data_interfaces
from weave import call_context, errors
from weave.legacy import (
graph,
run_streamtable_span,
stream_data_interfaces
)
from weave.legacy.wandb_interface.wandb_stream_table import StreamTable
from weave.trace import context as trace_context
Expand Down
2 changes: 1 addition & 1 deletion weave/legacy/ops_domain/trace_tree.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from wandb.sdk.data_types.trace_tree import Span as WBSpan

from weave import query_api as weave
from weave import stream_data_interfaces
from weave.legacy import stream_data_interfaces
from weave import weave_types as types
from weave.legacy import op_def
from weave.legacy.decorator_op import op
Expand Down
2 changes: 1 addition & 1 deletion weave/legacy/run_streamtable_span.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import typing
from typing import Iterable

from weave import stream_data_interfaces
from weave.legacy import stream_data_interfaces
from weave.eager import WeaveIter
from weave.legacy import artifact_wandb, uris
from weave.legacy.run import Run
Expand Down
File renamed without changes.

0 comments on commit 15af662

Please sign in to comment.