Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -62,19 +62,19 @@ model ChatMessageImageContentItem extends ChatMessageContentItem {
@doc("An internet location, which must be accessible to the model,from which the image may be retrieved.")
@projectedName("json", "image_url")
imageUrl: ChatMessageImageUrl;

@doc("""
The evaluation quality setting to use, which controls relative prioritization of speed, token consumption, and
accuracy.
""")
detail?: ChatMessageImageDetailLevel;
}

@doc("An internet location from which the model may retrieve an image.")
@added(ServiceApiVersions.v2023_12_01_Preview)
model ChatMessageImageUrl {
@doc("The URL of the image.")
url: url;

@doc("""
The evaluation quality setting to use, which controls relative prioritization of speed, token consumption, and
accuracy.
""")
detail?: ChatMessageImageDetailLevel;
}

@discriminator("role")
Expand Down