Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Next Next commit
Fixing review comments
  • Loading branch information
singankit committed May 2, 2025
commit bbb3927b76df4126e15dd02be4bd31a82a7b3cef
2 changes: 1 addition & 1 deletion specification/ai/Azure.AI.Projects/evaluations/routes.tsp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ interface Evaluations {
@doc("Creates an evaluation run.")
@route("runs:run")
@post
createRun is Azure.Core.Foundations.Operation<
create is Azure.Core.Foundations.Operation<
{
@doc("Evaluation to be run")
@body
Expand Down
3 changes: 2 additions & 1 deletion specification/ai/Azure.AI.Projects/red-teams/models.tsp
Original file line number Diff line number Diff line change
Expand Up @@ -140,8 +140,9 @@ model TargetConfig {
model RedTeam {
@doc("Identifier of the red team.")
@key("name")
@encodedName("application/json", "id")
@visibility(Lifecycle.Read)
id: string;
name: string;

@doc("Name of the red-team scan.")
scanName?: string;
Expand Down
2 changes: 1 addition & 1 deletion specification/ai/Azure.AI.Projects/red-teams/routes.tsp
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ interface RedTeams {
@doc("Creates a redteam run.")
@route("runs:run")
@post
createRun is Azure.Core.Foundations.Operation<
create is Azure.Core.Foundations.Operation<
{
@doc("Redteam to be run")
@body
Expand Down