You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/deploy_features.md
+1-3Lines changed: 1 addition & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -135,14 +135,12 @@ This process does *not* delete your previous model deployment. If you want to de
135
135
136
136
## Using reasoning models
137
137
138
-
⚠️ This feature is not currently compatible with [multimodal feature](./multimodal.md). TODO: OR IS IT?
139
-
140
138
This feature allows you to use reasoning models to generate responses based on retrieved content. These models spend more time processing and understanding the user's request.
141
139
To enable reasoning models, follow the steps in [the reasoning models guide](./reasoning.md).
142
140
143
141
## Using agentic retrieval
144
142
145
-
⚠️ This feature is not currently compatible with [multimodal feature](./multimodal.md). TODO: OR IS IT?
143
+
⚠️ This feature is not fully compatible with [multimodal feature](./multimodal.md).
146
144
147
145
This feature allows you to use agentic retrieval in place of the Search API. To enable agentic retrieval, follow the steps in [the agentic retrieval guide](./agentic_retrieval.md)
Copy file name to clipboardExpand all lines: docs/multimodal.md
+7Lines changed: 7 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -104,3 +104,10 @@ For more details on how this feature works, read [this blog post](https://techco
104
104
105
105
You can also modify those settings in the "Developer Settings" in the chat UI,
106
106
to experiment with different options before committing to them.
107
+
108
+
## Compatibility
109
+
110
+
* This feature is not fully compatible with the [agentic retrieval](./agentic_retrieval.md) feature.
111
+
The agent *will* perform the multimodal vector embedding search, but it will not return images in the response,
112
+
so we cannot send the images to the chat completion model.
113
+
* This feature is compatible with the [reasoning models](./reasoning.md) feature, as long as you use a model that [supports image inputs](https://learn.microsoft.com/azure/ai-services/openai/how-to/reasoning?tabs=python-secure%2Cpy#api--feature-support).
Copy file name to clipboardExpand all lines: todo.txt
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,10 @@ TODO:
9
9
* Test with integrated vectorization
10
10
* Update all TODOs in the code/docs
11
11
12
+
12
13
Decide:
13
14
* In conftest, should I make a new env for vision? Currently I mashed it into the existing env, but it might be cleaner to have a separate one, as now I have to pass llm_inputs explicitly in the tests to turn off image responses.
14
15
* LLMInputType and VectorFields have inconsistently named values
16
+
17
+
Later:
18
+
Agentic: Incompatible since it doesnt retrieve images. We would need to do a follow-up search query to get each document, like filter: id eq 'x' or id eq 'y' or....
0 commit comments