Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions sdk/evaluation/azure-ai-evaluation/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
- Fixed the non adversarial simulator to run in task-free mode

### Other Changes
- Stop dependency on the local promptflow service. No promptflow service will automatically start when running evaluation.

## 1.1.0 (2024-12-12)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
from promptflow._sdk._constants import LINE_NUMBER
from promptflow.client import PFClient
from promptflow.entities import Run
from promptflow._sdk._configuration import Configuration

from azure.ai.evaluation._common.math import list_mean_nan_safe, apply_transform_nan_safe
from azure.ai.evaluation._common.utils import validate_azure_ai_project
Expand Down Expand Up @@ -711,6 +712,7 @@ def _evaluate( # pylint: disable=too-many-locals,too-many-statements
if target is not None:
_validate_columns_for_target(input_data_df, target)

Configuration.get_instance().set_config("trace.destination", "none")
pf_client = PFClient(user_agent=USER_AGENT)
target_run: Optional[Run] = None

Expand Down
Loading