Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions qdrant-landing/content/documentation/embeddings/openai.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,9 @@ client.upsert(collection_name, points)
Once the documents are indexed, you can search for the most relevant documents using the same model.

```python
client.search(
client.query_points(
collection_name=collection_name,
query_vector=openai_client.embeddings.create(
query=openai_client.embeddings.create(
input=["What is the best to use for vector search scaling?"],
model=embedding_model,
)
Expand Down