Move patched evaluation TypedDicts to the azure.ai.projects.types namespace#48159
Move patched evaluation TypedDicts to the azure.ai.projects.types namespace#48159dargilco wants to merge 3 commits into
Conversation
|
Azure Pipelines: Successfully started running 1 pipeline(s). 9 pipeline(s) were filtered out due to trigger conditions. There may be pipelines that require an authorized user to comment /azp run to run. |
This comment has been minimized.
This comment has been minimized.
| patch_types_module = importlib.import_module(f"{__package__}._patch_types") | ||
|
|
||
| for name in getattr(patch_types_module, "__all__", []): | ||
| setattr(types_module, name, getattr(patch_types_module, name)) |
There was a problem hiding this comment.
The above is the run-time hack to export the hand-written TypedDicts into the "azure.ai.projects.typed" namespace. But since it's run-time, there won't be any typing hints...
[Pilot] PR Pipeline Failure AnalysisA CI pipeline failed on this pull request. Here is an automated analysis of what went wrong and how to get the build green. What failedThe
Root cause: Recommended next steps
Raw pipeline analysis (azsdk ci analyze)
|
CoPilot notes: