fix: vector store APIs

This commit is contained in:
Eric Huang 2025-11-05 13:52:43 -08:00
parent d9cf5cd480
commit 28cdf18083
6 changed files with 209 additions and 227 deletions

View file

@ -350,7 +350,7 @@ def test_openai_vector_store_search_empty(
assert search_response is not None
assert hasattr(search_response, "data")
assert len(search_response.data) == 0 # Empty store should return no results
assert search_response.search_query == "test query"
assert search_response.search_query == ["test query"]
assert search_response.has_more is False