-
Notifications
You must be signed in to change notification settings - Fork 5.6k
API for get agent evaluation run results #34056
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
YusakuNo1
merged 20 commits into
feature/azure-ai-projects-1dp-private
from
feature/azure-ai-projects-1dp-private-agent-eval
Apr 24, 2025
Merged
API for get agent evaluation run results #34056
YusakuNo1
merged 20 commits into
feature/azure-ai-projects-1dp-private
from
feature/azure-ai-projects-1dp-private-agent-eval
Apr 24, 2025
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…re-ai-projects-1dp-private-agent-eval
…re-ai-projects-1dp-private-agent-eval-new
Next Steps to MergeNext steps that must be taken to merge this PR:
|
|
PR validation pipeline restarted successfully. If there is ApiView generated, it will be updated in this comment. |
Collaborator
API Change CheckAPIView identified API level changes in this PR and created the following API reviews
|
Collaborator
|
API change check APIView has identified API level changes in this PR and created following API reviews. |
…re-ai-projects-1dp-private-agent-eval
…re-ai-projects-1dp-private-agent-eval
janhavi13
approved these changes
Apr 24, 2025
d8af047
into
feature/azure-ai-projects-1dp-private
28 of 39 checks passed
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Choose a PR Template
Switch to "Preview" on this description then select one of the choices below.
Click here to open a PR for a Data Plane API.
Click here to open a PR for a Control Plane (ARM) API.
Click here to open a PR for only SDK configuration.
API: Get agent evaluation results
Sample request:
GET /runs/agents/{runId}At Build 2025 with agent API v1, only the following URL is available (our document only mentions to use
completion Id):/runs/agents/thread_[unique-id]:run_[unique-id]After agent API v2 release, both of the following URLs are working (our document only mentions to use
run Id):/runs/agents/thread_[unique-id]:run_[unique-id]/runs/agents/run_[unique-id]Sample response:
HTTP 200{ "id": "run_[unique-id]", # For agent API v1, it's completion Id; for agent API v2, it's the run Id "status": "Succeeded", "results": [{ "evaluator": "Coherence", "score": 4, "status": "Succeeded", "reason": null, "version": "", "threadId": "thread_22T5DPuaLl1gMIcmAcxxuph9", "runId": "run_99YbyqAZNiVclQpmQQRREQqF", "error": null, "additionalDetails": null }, { "evaluator": "Fluency", "score": 3, "status": "Succeeded", "reason": null, "version": "", "threadId": "thread_22T5DPuaLl1gMIcmAcxxuph9", "runId": "run_99YbyqAZNiVclQpmQQRREQqF", "error": null, "additionalDetails": null }] }