We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57e6088 commit 496f9c4Copy full SHA for 496f9c4
src/openlayer/lib/tracing/tracer.py
@@ -474,11 +474,15 @@ def _handle_trace_completion(
474
)
475
client = _get_client()
476
if client:
477
- client.inference_pipelines.data.stream(
+ response = client.inference_pipelines.data.stream(
478
inference_pipeline_id=inference_pipeline_id,
479
rows=[trace_data],
480
config=config,
481
482
+ print(
483
+ "Successfully streamed data to Openlayer. Response:",
484
+ response.to_json(),
485
+ )
486
except Exception as err: # pylint: disable=broad-except
487
logger.error(traceback.format_exc())
488
logger.error(
0 commit comments