Sebastian Husch Lee
Sebastian Husch Lee
@vblagoje I don't think this fully addresses this issue, but I'm actively working on standardizing our `StreamingChunk` dataclass to include fields like `tool_call`, `tool_call_result`, `index` and `start` in this PR...
Instead of handling this in the Tracing Connector component I think it might be nicer to figure out how to do it at a pipeline level. So indicate that `PipelineBase._create_component_span`...
@vblagoje no not quite. I'd add a pipeline level run field (e.g. `trace: bool = True`). That if specified as `False` turns off tracing for that pipeline run. That would...
Hey @AyRickk thanks for opening the issue! I had a question. Are the additional fields in choice.delta part of the OpenAI spec or are they added on top by vLLM...
Hey @AyRickk after some internal discussion we think it makes more sense to make a dedicated vLLM Haystack integration. I realize our current docs suggest that one just use our...
> (Langfuse might have similar problems but I am not sure) Just to comment on the Langfuse integration, it looks to not have this problem. When looking here https://github.com/deepset-ai/haystack-core-integrations/blob/14fd1b8b276a62a5630e474e047ecaf1816e904b/integrations/langfuse/src/haystack_integrations/tracing/langfuse/tracer.py#L425-L428 I...
Hey @amazbin could you provide some more information on this like API documentation and examples of how this integration could be started?
Hey @marcklingen so this is possible with the current Langfuse Integration. It's not as succinct but you can do the following ```python from haystack_integrations.tracing.langfuse.tracer import tracing_context_var current_ctx = tracing_context_var.get({}) new_ctx...
The most logical place to add this would be to the google_ai integration in core integrations since it's using the same SDK. E.g. in this [announcement](https://developers.googleblog.com/en/gemini-embedding-text-model-now-available-gemini-api/) we see some example...
If you could do that @AboveTheHeavens that would be greatly appreciated! This looks pretty far along, I'd only recommend checking out some of our other embedders to see how they...