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
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,9 @@ The client constructor takes three required arguments:
| table_name | Name of the table to use for storing the embeddings. Think of this as the collection name |
| num_dimensions | Number of dimensions in the vector |

You can also specify the schema name, distance type, primary key type,

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why not adding it to the table above with a column marking it as optional?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I want to keep this part as simple as possible

etc. as optional parameters. Please see the documentation for details.

``` python
vec = client.Sync(service_url, "my_data", 2)
```
Expand Down
Loading