Skip to content

Commit

Permalink
remove ignore tags
Browse files Browse the repository at this point in the history
  • Loading branch information
spikechroma committed Sep 11, 2024
1 parent da91aee commit 1a0508f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/docs.trychroma.com/pages/reference/py-collection.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ The total number of embeddings added to the database
```python
def add(
ids: Optional[OneOrMany[ID]] = None,
embeddings: Optional[ # type: ignore[type-arg]
embeddings: Optional[
Union[
OneOrMany[Embedding],
OneOrMany[np.ndarray],
Expand Down Expand Up @@ -110,7 +110,7 @@ Get the first few results in the database up to limit

```python
def query(
query_embeddings: Optional[ # type: ignore[type-arg]
query_embeddings: Optional[
Union[
OneOrMany[Embedding],
OneOrMany[np.ndarray],
Expand Down Expand Up @@ -174,7 +174,7 @@ Modify the collection name or metadata
```python
def update(
ids: OneOrMany[ID],
embeddings: Optional[ # type: ignore[type-arg]
embeddings: Optional[
Union[
OneOrMany[Embedding],
OneOrMany[np.ndarray],
Expand Down Expand Up @@ -204,7 +204,7 @@ Update the embeddings, metadatas or documents for provided ids.
```python
def upsert(
ids: OneOrMany[ID],
embeddings: Optional[ # type: ignore[type-arg]
embeddings: Optional[
Union[
OneOrMany[Embedding],
OneOrMany[np.ndarray],
Expand Down

0 comments on commit 1a0508f

Please sign in to comment.