embedkit 0.1.2__py3-none-any.whl → 0.1.3__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
embedkit/classes.py ADDED
@@ -0,0 +1,21 @@
1
+ # ./src/embedkit/classes.py
2
+
3
+ """Core types and enums for the EmbedKit library.
4
+
5
+ This module provides the main types and enums that users should interact with:
6
+ - EmbeddingResult: The result type returned by embedding operations
7
+ - EmbeddingError: Exception type for embedding operations
8
+ - Model: Enum of supported embedding models
9
+ - CohereInputType: Enum for Cohere's input types
10
+ """
11
+
12
+ from . import EmbeddingResult, EmbeddingError
13
+ from .models import Model
14
+ from .providers.cohere import CohereInputType
15
+
16
+ __all__ = [
17
+ "EmbeddingResult",
18
+ "EmbeddingError",
19
+ "Model",
20
+ "CohereInputType"
21
+ ]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: embedkit
3
- Version: 0.1.2
3
+ Version: 0.1.3
4
4
  Summary: A simple toolkit for generating vector embeddings across multiple providers and models
5
5
  Author-email: JP Hwang <me@jphwang.com>
6
6
  License: MIT
@@ -1,12 +1,13 @@
1
1
  embedkit/__init__.py,sha256=E9BiBw4ikP0FOnbj0Y7qeF71XijghYwTUnjh-_Ogvfg,4519
2
2
  embedkit/base.py,sha256=d6-899ffow4fGsbIJGBO6RdFVDuo-4hKH_MHR8uTNe8,1279
3
+ embedkit/classes.py,sha256=iaMS0fZqDm4iL39qhtivyjMY8r7rGANnW8ZLfRjQQzA,596
3
4
  embedkit/config.py,sha256=EVGODSKxQAr46bU8dyORFunsfRuj6dnvtSqa4MxUZCo,138
4
5
  embedkit/models.py,sha256=EBIYkyZeIhGaOPL-9bslHHdLaZ7qzOYLd0qxVZ7VX7w,226
5
6
  embedkit/utils.py,sha256=91BzzvbYSrUsWeW3CTAw3yK-M3S5FgQXov16gxffkUo,1572
6
7
  embedkit/providers/__init__.py,sha256=HaS-HNQabvhn9xLNZCq3VUqPCb7rGG4pvgvpKP4AXcw,201
7
8
  embedkit/providers/cohere.py,sha256=e4MLe_SaeoCuS9JNyzPIhMxMGxBq4521TiMIWI6Mhes,4578
8
9
  embedkit/providers/colpali.py,sha256=vyCs_Q5DfvsPDGOGYsOA_oGRi5Z-Lvb07GR9pNT_OH4,5186
9
- embedkit-0.1.2.dist-info/METADATA,sha256=lIHOLUB8_wRSt-RpDmQ9W7BWNN1TRJyv1Rae74nl6bA,1893
10
- embedkit-0.1.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
11
- embedkit-0.1.2.dist-info/licenses/LICENSE,sha256=-g2Rad7b3rb2oVwOTwfMOIpscHT1zuaJoguamLRCBJs,1072
12
- embedkit-0.1.2.dist-info/RECORD,,
10
+ embedkit-0.1.3.dist-info/METADATA,sha256=2Taju_C4Cv3Vugh3RVVBLRSAhVlMU-i9DirGvQT1Gjw,1893
11
+ embedkit-0.1.3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
12
+ embedkit-0.1.3.dist-info/licenses/LICENSE,sha256=-g2Rad7b3rb2oVwOTwfMOIpscHT1zuaJoguamLRCBJs,1072
13
+ embedkit-0.1.3.dist-info/RECORD,,