Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion pinecone/data/index.py
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ def upsert_from_dataframe(
"""Upserts a dataframe into the index.

Args:
df: A pandas dataframe with the following columns: id, vector, sparse_values, and metadata.
df: A pandas dataframe with the following columns: id, values, sparse_values, and metadata.
namespace: The namespace to upsert into.
batch_size: The number of rows to upsert in a single batch.
show_progress: Whether to show a progress bar.
Expand Down
2 changes: 1 addition & 1 deletion pinecone/grpc/index_grpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ def upsert_from_dataframe(
"""Upserts a dataframe into the index.

Args:
df: A pandas dataframe with the following columns: id, vector, and metadata.
df: A pandas dataframe with the following columns: id, values, sparse_values, and metadata.
namespace: The namespace to upsert into.
batch_size: The number of rows to upsert in a single batch.
use_async_requests: Whether to upsert multiple requests at the same time using asynchronous request mechanism.
Expand Down