Jon Malsan
Jon Malsan
+1 on exposing this functionality would be great. To expand on @tomasvanpottelbergh 's solution, I was able to download locally using the following: ```python import os from azure.ai.ml import MLClient...
@Marcel-Simon and @ms-mkd I am working on this right now. I had a lot of computer issues yesterday, but I have straightened them out and am making progress again. I...
Hi Yuval, when working with IR imagery, you need to resist normalizing each image independently, because like you said it will eliminate all useful information from the image. The approach...
+1 on the ability to pass nested fields to any flow as a column mapping. I believe the general case is directly tied to this bug, but I am happy...
This can be done by setting the environment variable `PF_WORKER_COUNT` like follows in your flow yaml file: ```yaml environment_variables: PF_WORKER_COUNT: "1" ``` I do this to avoid throttling limits or...
Thank you for calling that out. I did try the `func new` method and do see that the `run_on_startup` flag is set to `False`. Is the update to VS Code...
Adding to this, this becomes a much bigger deal for some of the helper types of input like "AzureOpenAIModelConfiguration". Where locally you pass the name and it autoresolves into the...
@asos-oliverfrost thank you for finding that! Rolling back worked for me. It looks like this is the specific line that is breaking the behavior in prompt flow, because the new...
I use flex flows and was able to fix this bug by overloading the `collect_openai_tokens` method on `promptflow.tracing._trace.token_collector`. This allows me to filter to only the "completion_tokens", "prompt_tokens" and "total_tokens",...
I am seeing the same error when invoking `DefaultAzureCredential`. Here are my installed versions of azure projects: ``` azure-core 1.35.0 azure-core-tracing-opentelemetry 1.0.0b12 azure-cosmos 4.9.0 azure-identity 1.24.0 azure-monitor-opentelemetry 1.8.0 azure-monitor-opentelemetry-exporter 1.0.0b41...