We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0864f41 + a0f557b commit 0051261Copy full SHA for 0051261
articles/ai-foundry/model-inference/includes/use-chat-multi-modal/python.md
@@ -58,7 +58,7 @@ from azure.identity import DefaultAzureCredential
58
client = ChatCompletionsClient(
59
endpoint="https://<resource>.services.ai.azure.com/models",
60
credential=DefaultAzureCredential(),
61
- model="phi-4-omni"
+ model="Phi-4-multimodal-instruct"
62
)
63
```
64
@@ -108,8 +108,7 @@ response = client.complete(
108
ImageContentItem(image=ImageUrl(url=data_url))
109
]),
110
],
111
- temperature=0,
112
- top_p=1,
+ temperature=1,
113
max_tokens=2048,
114
115
0 commit comments