From 1e69395f5faeb9916a3ae88c7dfd4d508ac8e50c Mon Sep 17 00:00:00 2001 From: Darren Cohen <39422044+dargilco@users.noreply.github.com> Date: Mon, 10 Jun 2024 11:20:08 -0700 Subject: [PATCH] limit scope of text and image embedding clients to Python only --- specification/ai/ModelClient/client.tsp | 17 +++++++------- .../GetChatCompletions_MaximumSet_Gen.json | 22 +++++++++---------- .../GetChatCompletions_MinimumSet_Gen.json | 14 ++++++------ .../GetEmbeddings_MaximumSet_Gen.json | 18 +++++++-------- .../GetEmbeddings_MinimumSet_Gen.json | 16 +++++++------- .../GetImageEmbeddings_MaximumSet_Gen.json | 20 ++++++++--------- .../GetImageEmbeddings_MinimumSet_Gen.json | 16 +++++++------- .../GetModelInfo_MaximumSet_Gen.json | 4 ++-- .../GetModelInfo_MinimumSet_Gen.json | 4 ++-- .../GetChatCompletions_MaximumSet_Gen.json | 22 +++++++++---------- .../GetChatCompletions_MinimumSet_Gen.json | 14 ++++++------ .../GetEmbeddings_MaximumSet_Gen.json | 18 +++++++-------- .../GetEmbeddings_MinimumSet_Gen.json | 16 +++++++------- .../GetImageEmbeddings_MaximumSet_Gen.json | 20 ++++++++--------- .../GetImageEmbeddings_MinimumSet_Gen.json | 16 +++++++------- .../examples/GetModelInfo_MaximumSet_Gen.json | 4 ++-- .../examples/GetModelInfo_MinimumSet_Gen.json | 4 ++-- 17 files changed, 122 insertions(+), 123 deletions(-) diff --git a/specification/ai/ModelClient/client.tsp b/specification/ai/ModelClient/client.tsp index ecfb31e4d8e8..0a09a4560473 100644 --- a/specification/ai/ModelClient/client.tsp +++ b/specification/ai/ModelClient/client.tsp @@ -8,15 +8,14 @@ using TypeSpec.Versioning; @useDependency(ModelClient.Versions.v2024_05_01_Preview) namespace Customizations; // The actual name here doesn't matter and is here for organization purposes only -// These models are used by the hand-written operator methods. -// We need to declare their usage and public access, otherwise they won't be emited in the generated code. -@@usage(ModelClient.StreamingChatChoiceUpdate, Usage.output); +// Are these needed? @@usage(ModelClient.ChatCompletions, Usage.output); -@@usage(ModelClient.StreamingChatCompletionsUpdate, Usage.output); @@usage(ModelClient.ModelInfo, Usage.output); +@@usage(ModelClient.StreamingChatChoiceUpdate, Usage.output); +@@usage(ModelClient.StreamingChatCompletionsUpdate, Usage.output); -// Since we made all operator methods internal, we need to expliclty say we still want the models they use -// to be public. +// Since we made all operator methods internal, we need to expliclty +// say we still want the models they use to be public. @@access(ModelClient.ChatChoice, Access.public); @@access(ModelClient.ChatCompletions, Access.public); @@access(ModelClient.ChatCompletionsFunctionToolCall, Access.public); @@ -57,7 +56,7 @@ namespace Customizations; // The actual name here doesn't matter and is here for // The operators need to be hidden, since we hand-write the public versions of those to // 1. Add chat completions streaming (to getChatCompletions operator) // 2. Add hyper-params (to getChatCompletions/Embeddings/ImageEmbeddings, all clients) -// 3. Cache model info (to getModelInfo, all clients) +// 3. Cache model info (to getModelInfo, all clients, Python only) @@access(ModelClient.getChatCompletions, Access.internal, "python"); @@access(ModelClient.getEmbeddings, Access.internal, "python"); @@access(ModelClient.getImageEmbeddings, Access.internal, "python"); @@ -75,7 +74,7 @@ interface Client1 { @client({ name: "EmbeddingsClient", service: ModelClient, -}) +}, "python") interface Client2 { embed is ModelClient.getEmbeddings; getModelInfo is ModelClient.getModelInfo; @@ -84,7 +83,7 @@ interface Client2 { @client({ name: "ImageEmbeddingsClient", service: ModelClient, -}) +}, "python") interface Client3 { embed is ModelClient.getImageEmbeddings; getModelInfo is ModelClient.getModelInfo; diff --git a/specification/ai/ModelClient/examples/2024-05-01-preview/GetChatCompletions_MaximumSet_Gen.json b/specification/ai/ModelClient/examples/2024-05-01-preview/GetChatCompletions_MaximumSet_Gen.json index b70571ec9a23..cc91bbf107f9 100644 --- a/specification/ai/ModelClient/examples/2024-05-01-preview/GetChatCompletions_MaximumSet_Gen.json +++ b/specification/ai/ModelClient/examples/2024-05-01-preview/GetChatCompletions_MaximumSet_Gen.json @@ -10,7 +10,7 @@ "role": "ChatRequestMessage" } ], - "frequency_penalty": 1, + "frequency_penalty": -2, "stream": true, "presence_penalty": 0, "temperature": 0, @@ -18,38 +18,38 @@ "max_tokens": 0, "response_format": "text", "stop": [ - "ftfcfmwymaiaxq" + "jsgknsbxaqse" ], "tools": [ { "type": "ChatCompletionsToolDefinition" } ], - "seed": 28 + "seed": 16 } }, "responses": { "200": { "body": { - "id": "lucg", - "created": 11, - "model": "tsqex", + "id": "vttvkvwbbvgjtqphyswtfjq", + "created": 12, + "model": "yyxicqgwvohxtfgwaymlypcyuyskgl", "usage": { - "completion_tokens": 10, + "completion_tokens": 19, "prompt_tokens": 14, - "total_tokens": 7 + "total_tokens": 16 }, "choices": [ { - "index": 4, + "index": 1, "finish_reason": "stop", "message": { "role": "system", - "content": "xtrirgreezabshxirfhi", + "content": "vjwamdxrsbqojpolqr", "tool_calls": [ { "type": "ChatCompletionsToolCall", - "id": "kicdohgtfw" + "id": "pmmdjgalvahbkafjqir" } ] } diff --git a/specification/ai/ModelClient/examples/2024-05-01-preview/GetChatCompletions_MinimumSet_Gen.json b/specification/ai/ModelClient/examples/2024-05-01-preview/GetChatCompletions_MinimumSet_Gen.json index acac41858e43..9c70badfd10d 100644 --- a/specification/ai/ModelClient/examples/2024-05-01-preview/GetChatCompletions_MinimumSet_Gen.json +++ b/specification/ai/ModelClient/examples/2024-05-01-preview/GetChatCompletions_MinimumSet_Gen.json @@ -14,21 +14,21 @@ "responses": { "200": { "body": { - "id": "lucg", - "created": 11, - "model": "tsqex", + "id": "vttvkvwbbvgjtqphyswtfjq", + "created": 12, + "model": "yyxicqgwvohxtfgwaymlypcyuyskgl", "usage": { - "completion_tokens": 10, + "completion_tokens": 19, "prompt_tokens": 14, - "total_tokens": 7 + "total_tokens": 16 }, "choices": [ { - "index": 4, + "index": 1, "finish_reason": "stop", "message": { "role": "system", - "content": "xtrirgreezabshxirfhi" + "content": "vjwamdxrsbqojpolqr" } } ] diff --git a/specification/ai/ModelClient/examples/2024-05-01-preview/GetEmbeddings_MaximumSet_Gen.json b/specification/ai/ModelClient/examples/2024-05-01-preview/GetEmbeddings_MaximumSet_Gen.json index c5dc5f119751..e88b306bdc19 100644 --- a/specification/ai/ModelClient/examples/2024-05-01-preview/GetEmbeddings_MaximumSet_Gen.json +++ b/specification/ai/ModelClient/examples/2024-05-01-preview/GetEmbeddings_MaximumSet_Gen.json @@ -6,9 +6,9 @@ "unknown-parameters": "error", "body": { "input": [ - "udxqxeltsnnnojgwpppb" + "uwfwjjkuc" ], - "dimensions": 1, + "dimensions": 20, "encoding_format": "base64", "input_type": "text" } @@ -16,21 +16,21 @@ "responses": { "200": { "body": { - "id": "fwajvrkzedj", + "id": "vjtifrodzwydvynddmbudnno", "data": [ { "embedding": [ - 3 + 16 ], - "index": 15 + "index": 1 } ], "usage": { - "input_tokens": 4, - "prompt_tokens": 27, - "total_tokens": 14 + "input_tokens": 20, + "prompt_tokens": 28, + "total_tokens": 2 }, - "model": "rzfpwylkkwnqoerjogdqgf" + "model": "obwfxvadcvvziooogpswzqkn" } } } diff --git a/specification/ai/ModelClient/examples/2024-05-01-preview/GetEmbeddings_MinimumSet_Gen.json b/specification/ai/ModelClient/examples/2024-05-01-preview/GetEmbeddings_MinimumSet_Gen.json index 64a044a5ed1b..7d15e7c1a297 100644 --- a/specification/ai/ModelClient/examples/2024-05-01-preview/GetEmbeddings_MinimumSet_Gen.json +++ b/specification/ai/ModelClient/examples/2024-05-01-preview/GetEmbeddings_MinimumSet_Gen.json @@ -5,28 +5,28 @@ "api-version": "2024-05-01-preview", "body": { "input": [ - "abhxkxorcejjnfwidhhbf" + "ujqrjllpyke" ] } }, "responses": { "200": { "body": { - "id": "fwajvrkzedj", + "id": "vjtifrodzwydvynddmbudnno", "data": [ { "embedding": [ - 3 + 16 ], - "index": 15 + "index": 1 } ], "usage": { - "input_tokens": 4, - "prompt_tokens": 27, - "total_tokens": 14 + "input_tokens": 20, + "prompt_tokens": 28, + "total_tokens": 2 }, - "model": "rzfpwylkkwnqoerjogdqgf" + "model": "obwfxvadcvvziooogpswzqkn" } } } diff --git a/specification/ai/ModelClient/examples/2024-05-01-preview/GetImageEmbeddings_MaximumSet_Gen.json b/specification/ai/ModelClient/examples/2024-05-01-preview/GetImageEmbeddings_MaximumSet_Gen.json index d691d32bd4e3..1e1cfdef0d20 100644 --- a/specification/ai/ModelClient/examples/2024-05-01-preview/GetImageEmbeddings_MaximumSet_Gen.json +++ b/specification/ai/ModelClient/examples/2024-05-01-preview/GetImageEmbeddings_MaximumSet_Gen.json @@ -7,11 +7,11 @@ "body": { "input": [ { - "image": "jwbxrzdcafrxmhrztwepxmsrgys", - "text": "tmsxeneoqsimdpezbblrmvscvee" + "image": "rlwzmtmuitzvs", + "text": "htjxmfwdiw" } ], - "dimensions": 16, + "dimensions": 26, "encoding_format": "base64", "input_type": "text" } @@ -19,21 +19,21 @@ "responses": { "200": { "body": { - "id": "fwajvrkzedj", + "id": "vjtifrodzwydvynddmbudnno", "data": [ { "embedding": [ - 3 + 16 ], - "index": 15 + "index": 1 } ], "usage": { - "input_tokens": 4, - "prompt_tokens": 27, - "total_tokens": 14 + "input_tokens": 20, + "prompt_tokens": 28, + "total_tokens": 2 }, - "model": "rzfpwylkkwnqoerjogdqgf" + "model": "obwfxvadcvvziooogpswzqkn" } } } diff --git a/specification/ai/ModelClient/examples/2024-05-01-preview/GetImageEmbeddings_MinimumSet_Gen.json b/specification/ai/ModelClient/examples/2024-05-01-preview/GetImageEmbeddings_MinimumSet_Gen.json index 21729c14e1b3..35b045e1a21e 100644 --- a/specification/ai/ModelClient/examples/2024-05-01-preview/GetImageEmbeddings_MinimumSet_Gen.json +++ b/specification/ai/ModelClient/examples/2024-05-01-preview/GetImageEmbeddings_MinimumSet_Gen.json @@ -6,7 +6,7 @@ "body": { "input": [ { - "image": "jwbxrzdcafrxmhrztwepxmsrgys" + "image": "rlwzmtmuitzvs" } ] } @@ -14,21 +14,21 @@ "responses": { "200": { "body": { - "id": "fwajvrkzedj", + "id": "vjtifrodzwydvynddmbudnno", "data": [ { "embedding": [ - 3 + 16 ], - "index": 15 + "index": 1 } ], "usage": { - "input_tokens": 4, - "prompt_tokens": 27, - "total_tokens": 14 + "input_tokens": 20, + "prompt_tokens": 28, + "total_tokens": 2 }, - "model": "rzfpwylkkwnqoerjogdqgf" + "model": "obwfxvadcvvziooogpswzqkn" } } } diff --git a/specification/ai/ModelClient/examples/2024-05-01-preview/GetModelInfo_MaximumSet_Gen.json b/specification/ai/ModelClient/examples/2024-05-01-preview/GetModelInfo_MaximumSet_Gen.json index b4dac1c13edc..ae964061c70f 100644 --- a/specification/ai/ModelClient/examples/2024-05-01-preview/GetModelInfo_MaximumSet_Gen.json +++ b/specification/ai/ModelClient/examples/2024-05-01-preview/GetModelInfo_MaximumSet_Gen.json @@ -7,9 +7,9 @@ "responses": { "200": { "body": { - "model_name": "gqhcghuvgajmrjva", + "model_name": "uvbxltprmh", "model_type": "embeddings", - "model_provider_name": "fqkylpirzwbklhcbgc" + "model_provider_name": "uuklhgbngggjryjphasqjiyk" } } } diff --git a/specification/ai/ModelClient/examples/2024-05-01-preview/GetModelInfo_MinimumSet_Gen.json b/specification/ai/ModelClient/examples/2024-05-01-preview/GetModelInfo_MinimumSet_Gen.json index eff3b0646089..70ef42df2ba4 100644 --- a/specification/ai/ModelClient/examples/2024-05-01-preview/GetModelInfo_MinimumSet_Gen.json +++ b/specification/ai/ModelClient/examples/2024-05-01-preview/GetModelInfo_MinimumSet_Gen.json @@ -7,9 +7,9 @@ "responses": { "200": { "body": { - "model_name": "gqhcghuvgajmrjva", + "model_name": "uvbxltprmh", "model_type": "embeddings", - "model_provider_name": "fqkylpirzwbklhcbgc" + "model_provider_name": "uuklhgbngggjryjphasqjiyk" } } } diff --git a/specification/ai/data-plane/ModelClient/preview/2024-05-01-preview/examples/GetChatCompletions_MaximumSet_Gen.json b/specification/ai/data-plane/ModelClient/preview/2024-05-01-preview/examples/GetChatCompletions_MaximumSet_Gen.json index b70571ec9a23..cc91bbf107f9 100644 --- a/specification/ai/data-plane/ModelClient/preview/2024-05-01-preview/examples/GetChatCompletions_MaximumSet_Gen.json +++ b/specification/ai/data-plane/ModelClient/preview/2024-05-01-preview/examples/GetChatCompletions_MaximumSet_Gen.json @@ -10,7 +10,7 @@ "role": "ChatRequestMessage" } ], - "frequency_penalty": 1, + "frequency_penalty": -2, "stream": true, "presence_penalty": 0, "temperature": 0, @@ -18,38 +18,38 @@ "max_tokens": 0, "response_format": "text", "stop": [ - "ftfcfmwymaiaxq" + "jsgknsbxaqse" ], "tools": [ { "type": "ChatCompletionsToolDefinition" } ], - "seed": 28 + "seed": 16 } }, "responses": { "200": { "body": { - "id": "lucg", - "created": 11, - "model": "tsqex", + "id": "vttvkvwbbvgjtqphyswtfjq", + "created": 12, + "model": "yyxicqgwvohxtfgwaymlypcyuyskgl", "usage": { - "completion_tokens": 10, + "completion_tokens": 19, "prompt_tokens": 14, - "total_tokens": 7 + "total_tokens": 16 }, "choices": [ { - "index": 4, + "index": 1, "finish_reason": "stop", "message": { "role": "system", - "content": "xtrirgreezabshxirfhi", + "content": "vjwamdxrsbqojpolqr", "tool_calls": [ { "type": "ChatCompletionsToolCall", - "id": "kicdohgtfw" + "id": "pmmdjgalvahbkafjqir" } ] } diff --git a/specification/ai/data-plane/ModelClient/preview/2024-05-01-preview/examples/GetChatCompletions_MinimumSet_Gen.json b/specification/ai/data-plane/ModelClient/preview/2024-05-01-preview/examples/GetChatCompletions_MinimumSet_Gen.json index acac41858e43..9c70badfd10d 100644 --- a/specification/ai/data-plane/ModelClient/preview/2024-05-01-preview/examples/GetChatCompletions_MinimumSet_Gen.json +++ b/specification/ai/data-plane/ModelClient/preview/2024-05-01-preview/examples/GetChatCompletions_MinimumSet_Gen.json @@ -14,21 +14,21 @@ "responses": { "200": { "body": { - "id": "lucg", - "created": 11, - "model": "tsqex", + "id": "vttvkvwbbvgjtqphyswtfjq", + "created": 12, + "model": "yyxicqgwvohxtfgwaymlypcyuyskgl", "usage": { - "completion_tokens": 10, + "completion_tokens": 19, "prompt_tokens": 14, - "total_tokens": 7 + "total_tokens": 16 }, "choices": [ { - "index": 4, + "index": 1, "finish_reason": "stop", "message": { "role": "system", - "content": "xtrirgreezabshxirfhi" + "content": "vjwamdxrsbqojpolqr" } } ] diff --git a/specification/ai/data-plane/ModelClient/preview/2024-05-01-preview/examples/GetEmbeddings_MaximumSet_Gen.json b/specification/ai/data-plane/ModelClient/preview/2024-05-01-preview/examples/GetEmbeddings_MaximumSet_Gen.json index c5dc5f119751..e88b306bdc19 100644 --- a/specification/ai/data-plane/ModelClient/preview/2024-05-01-preview/examples/GetEmbeddings_MaximumSet_Gen.json +++ b/specification/ai/data-plane/ModelClient/preview/2024-05-01-preview/examples/GetEmbeddings_MaximumSet_Gen.json @@ -6,9 +6,9 @@ "unknown-parameters": "error", "body": { "input": [ - "udxqxeltsnnnojgwpppb" + "uwfwjjkuc" ], - "dimensions": 1, + "dimensions": 20, "encoding_format": "base64", "input_type": "text" } @@ -16,21 +16,21 @@ "responses": { "200": { "body": { - "id": "fwajvrkzedj", + "id": "vjtifrodzwydvynddmbudnno", "data": [ { "embedding": [ - 3 + 16 ], - "index": 15 + "index": 1 } ], "usage": { - "input_tokens": 4, - "prompt_tokens": 27, - "total_tokens": 14 + "input_tokens": 20, + "prompt_tokens": 28, + "total_tokens": 2 }, - "model": "rzfpwylkkwnqoerjogdqgf" + "model": "obwfxvadcvvziooogpswzqkn" } } } diff --git a/specification/ai/data-plane/ModelClient/preview/2024-05-01-preview/examples/GetEmbeddings_MinimumSet_Gen.json b/specification/ai/data-plane/ModelClient/preview/2024-05-01-preview/examples/GetEmbeddings_MinimumSet_Gen.json index 64a044a5ed1b..7d15e7c1a297 100644 --- a/specification/ai/data-plane/ModelClient/preview/2024-05-01-preview/examples/GetEmbeddings_MinimumSet_Gen.json +++ b/specification/ai/data-plane/ModelClient/preview/2024-05-01-preview/examples/GetEmbeddings_MinimumSet_Gen.json @@ -5,28 +5,28 @@ "api-version": "2024-05-01-preview", "body": { "input": [ - "abhxkxorcejjnfwidhhbf" + "ujqrjllpyke" ] } }, "responses": { "200": { "body": { - "id": "fwajvrkzedj", + "id": "vjtifrodzwydvynddmbudnno", "data": [ { "embedding": [ - 3 + 16 ], - "index": 15 + "index": 1 } ], "usage": { - "input_tokens": 4, - "prompt_tokens": 27, - "total_tokens": 14 + "input_tokens": 20, + "prompt_tokens": 28, + "total_tokens": 2 }, - "model": "rzfpwylkkwnqoerjogdqgf" + "model": "obwfxvadcvvziooogpswzqkn" } } } diff --git a/specification/ai/data-plane/ModelClient/preview/2024-05-01-preview/examples/GetImageEmbeddings_MaximumSet_Gen.json b/specification/ai/data-plane/ModelClient/preview/2024-05-01-preview/examples/GetImageEmbeddings_MaximumSet_Gen.json index d691d32bd4e3..1e1cfdef0d20 100644 --- a/specification/ai/data-plane/ModelClient/preview/2024-05-01-preview/examples/GetImageEmbeddings_MaximumSet_Gen.json +++ b/specification/ai/data-plane/ModelClient/preview/2024-05-01-preview/examples/GetImageEmbeddings_MaximumSet_Gen.json @@ -7,11 +7,11 @@ "body": { "input": [ { - "image": "jwbxrzdcafrxmhrztwepxmsrgys", - "text": "tmsxeneoqsimdpezbblrmvscvee" + "image": "rlwzmtmuitzvs", + "text": "htjxmfwdiw" } ], - "dimensions": 16, + "dimensions": 26, "encoding_format": "base64", "input_type": "text" } @@ -19,21 +19,21 @@ "responses": { "200": { "body": { - "id": "fwajvrkzedj", + "id": "vjtifrodzwydvynddmbudnno", "data": [ { "embedding": [ - 3 + 16 ], - "index": 15 + "index": 1 } ], "usage": { - "input_tokens": 4, - "prompt_tokens": 27, - "total_tokens": 14 + "input_tokens": 20, + "prompt_tokens": 28, + "total_tokens": 2 }, - "model": "rzfpwylkkwnqoerjogdqgf" + "model": "obwfxvadcvvziooogpswzqkn" } } } diff --git a/specification/ai/data-plane/ModelClient/preview/2024-05-01-preview/examples/GetImageEmbeddings_MinimumSet_Gen.json b/specification/ai/data-plane/ModelClient/preview/2024-05-01-preview/examples/GetImageEmbeddings_MinimumSet_Gen.json index 21729c14e1b3..35b045e1a21e 100644 --- a/specification/ai/data-plane/ModelClient/preview/2024-05-01-preview/examples/GetImageEmbeddings_MinimumSet_Gen.json +++ b/specification/ai/data-plane/ModelClient/preview/2024-05-01-preview/examples/GetImageEmbeddings_MinimumSet_Gen.json @@ -6,7 +6,7 @@ "body": { "input": [ { - "image": "jwbxrzdcafrxmhrztwepxmsrgys" + "image": "rlwzmtmuitzvs" } ] } @@ -14,21 +14,21 @@ "responses": { "200": { "body": { - "id": "fwajvrkzedj", + "id": "vjtifrodzwydvynddmbudnno", "data": [ { "embedding": [ - 3 + 16 ], - "index": 15 + "index": 1 } ], "usage": { - "input_tokens": 4, - "prompt_tokens": 27, - "total_tokens": 14 + "input_tokens": 20, + "prompt_tokens": 28, + "total_tokens": 2 }, - "model": "rzfpwylkkwnqoerjogdqgf" + "model": "obwfxvadcvvziooogpswzqkn" } } } diff --git a/specification/ai/data-plane/ModelClient/preview/2024-05-01-preview/examples/GetModelInfo_MaximumSet_Gen.json b/specification/ai/data-plane/ModelClient/preview/2024-05-01-preview/examples/GetModelInfo_MaximumSet_Gen.json index b4dac1c13edc..ae964061c70f 100644 --- a/specification/ai/data-plane/ModelClient/preview/2024-05-01-preview/examples/GetModelInfo_MaximumSet_Gen.json +++ b/specification/ai/data-plane/ModelClient/preview/2024-05-01-preview/examples/GetModelInfo_MaximumSet_Gen.json @@ -7,9 +7,9 @@ "responses": { "200": { "body": { - "model_name": "gqhcghuvgajmrjva", + "model_name": "uvbxltprmh", "model_type": "embeddings", - "model_provider_name": "fqkylpirzwbklhcbgc" + "model_provider_name": "uuklhgbngggjryjphasqjiyk" } } } diff --git a/specification/ai/data-plane/ModelClient/preview/2024-05-01-preview/examples/GetModelInfo_MinimumSet_Gen.json b/specification/ai/data-plane/ModelClient/preview/2024-05-01-preview/examples/GetModelInfo_MinimumSet_Gen.json index eff3b0646089..70ef42df2ba4 100644 --- a/specification/ai/data-plane/ModelClient/preview/2024-05-01-preview/examples/GetModelInfo_MinimumSet_Gen.json +++ b/specification/ai/data-plane/ModelClient/preview/2024-05-01-preview/examples/GetModelInfo_MinimumSet_Gen.json @@ -7,9 +7,9 @@ "responses": { "200": { "body": { - "model_name": "gqhcghuvgajmrjva", + "model_name": "uvbxltprmh", "model_type": "embeddings", - "model_provider_name": "fqkylpirzwbklhcbgc" + "model_provider_name": "uuklhgbngggjryjphasqjiyk" } } }