File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Python/CosmosDB-NoSQL_SemanticSearchDemo/src/app Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -181,7 +181,7 @@ def debug_container_capabilities(container, container_name):
181181 st .session_state .cosmos_container_qflat = st .session_state .cosmos_database .create_container_if_not_exists (
182182 id = container_name_qflat ,
183183 partition_key = PartitionKey (path = "/id" ),
184- full_text_policy = full_text_policy , # Temporarily commented out for compatibility
184+ full_text_policy = full_text_policy ,
185185 vector_embedding_policy = vector_embedding_policy ,
186186 indexing_policy = qflat_indexing_policy ,
187187 offer_throughput = 400
@@ -192,7 +192,7 @@ def debug_container_capabilities(container, container_name):
192192 st .session_state .cosmos_container_diskann = st .session_state .cosmos_database .create_container_if_not_exists (
193193 id = container_name_diskann ,
194194 partition_key = PartitionKey (path = "/id" ),
195- full_text_policy = full_text_policy , # Temporarily commented out for compatibility
195+ full_text_policy = full_text_policy ,
196196 vector_embedding_policy = vector_embedding_policy ,
197197 indexing_policy = diskann_indexing_policy ,
198198 offer_throughput = 400
You can’t perform that action at this time.
0 commit comments