Skip to content

Commit

Permalink
Version 0.0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
louisbrulenaudet committed Aug 11, 2024
1 parent d76c921 commit 202668f
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
Binary file added dist/ragoon-0.0.9-py3-none-any.whl
Binary file not shown.
Binary file added dist/ragoon-0.0.9.tar.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
project = 'RAGoon'
copyright = '2024, Louis Brulé Naudet'
author = 'Louis Brulé Naudet'
release = '0.0.9'
release = '0.0.10'

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "ragoon"
version = "0.0.9"
version = "0.0.10"
description = "RAGoon : High level library for batched embeddings generation, blazingly-fast web-based RAG and quantitized indexes processing ⚡"
readme = "README.md"
requires-python = ">=3.9"
Expand Down
4 changes: 2 additions & 2 deletions src/ragoon/embeddings.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ class EmbeddingsDataLoader:
"""
def __init__(
self,
token: str,
token: str = None,
model_configs: List[Dict[str, str]],
dataset_name: Optional[str] = None,
dataset: Optional[Union[Dataset, DatasetDict]] = None,
Expand All @@ -142,7 +142,7 @@ def __init__(
Parameters
----------
token : str
The token for accessing Hugging Face API.
The token for accessing Hugging Face API. Default is None.
model_configs : list of dict
The list of dictionaries with model configurations to use for generating embeddings.
Expand Down

0 comments on commit 202668f

Please sign in to comment.