Skip to content

Commit

Permalink
run black to get precommit passing
Browse files Browse the repository at this point in the history
  • Loading branch information
olirice committed Oct 2, 2023
1 parent b68baf6 commit 84dc0d0
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/vecs/adapter/text.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,13 @@ class TextEmbedding(AdapterStep):
embeddings using a specified sentence transformers model.
"""

def __init__(self, *, model: TextEmbeddingModel, batch_size: int = 8, use_auth_token: str = None):
def __init__(
self,
*,
model: TextEmbeddingModel,
batch_size: int = 8,
use_auth_token: str = None,
):
"""
Initializes the TextEmbedding adapter with a sentence transformers model.
Expand Down

0 comments on commit 84dc0d0

Please sign in to comment.