swarmauri_parser_bertembedding 0.7.0.dev12__tar.gz → 0.7.1.dev1__tar.gz

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.
@@ -0,0 +1,67 @@
1
+ Metadata-Version: 2.3
2
+ Name: swarmauri_parser_bertembedding
3
+ Version: 0.7.1.dev1
4
+ Summary: Swarmauri Bert Embedding Parser
5
+ License: Apache-2.0
6
+ Author: Jacob Stewart
7
+ Author-email: jacob@swarmauri.com
8
+ Requires-Python: >=3.10,<3.13
9
+ Classifier: License :: OSI Approved :: Apache Software License
10
+ Classifier: Programming Language :: Python :: 3.10
11
+ Classifier: Programming Language :: Python :: 3.11
12
+ Classifier: Programming Language :: Python :: 3.12
13
+ Requires-Dist: swarmauri_base
14
+ Requires-Dist: swarmauri_core
15
+ Requires-Dist: swarmauri_standard
16
+ Requires-Dist: torch
17
+ Requires-Dist: transformers (>=4.45.0)
18
+ Description-Content-Type: text/markdown
19
+
20
+
21
+ ![Swamauri Logo](https://res.cloudinary.com/dbjmpekvl/image/upload/v1730099724/Swarmauri-logo-lockup-2048x757_hww01w.png)
22
+
23
+ <p align="center">
24
+ <a href="https://pypi.org/project/swarmauri_parser_bertembedding/">
25
+ <img src="https://img.shields.io/pypi/dm/swarmauri_parser_bertembedding" alt="PyPI - Downloads"/></a>
26
+ <a href="https://github.com/swarmauri/swarmauri-sdk/blob/master/pkgs/community/swarmauri_parser_bertembedding/README.md">
27
+ <img src="https://hits.seeyoufarm.com/api/count/incr/badge.svg?url=https://github.com/swarmauri/swarmauri-sdk/pkgs/community/swarmauri_parser_bertembedding/README.md&count_bg=%2379C83D&title_bg=%23555555&icon=&icon_color=%23E7E7E7&title=hits&edge_flat=false" alt="GitHub Hits"/></a>
28
+ <a href="https://pypi.org/project/swarmauri_parser_bertembedding/">
29
+ <img src="https://img.shields.io/pypi/pyversions/swarmauri_parser_bertembedding" alt="PyPI - Python Version"/></a>
30
+ <a href="https://pypi.org/project/swarmauri_parser_bertembedding/">
31
+ <img src="https://img.shields.io/pypi/l/swarmauri_parser_bertembedding" alt="PyPI - License"/></a>
32
+ <a href="https://pypi.org/project/swarmauri_parser_bertembedding/">
33
+ <img src="https://img.shields.io/pypi/v/swarmauri_parser_bertembedding?label=swarmauri_parser_bertembedding&color=green" alt="PyPI - swarmauri_parser_bertembedding"/></a>
34
+ </p>
35
+
36
+ ---
37
+
38
+ # Swarmauri Parser Bert Embedding
39
+
40
+ A parser that transforms input text into document embeddings using BERT.
41
+
42
+ ## Installation
43
+
44
+ ```bash
45
+ pip install swarmauri_parser_bertembedding
46
+ ```
47
+
48
+ ## Usage
49
+ Basic usage examples with code snippets
50
+ ```python
51
+ from swarmauri.parsers.BERTEmbeddingParser import BERTEmbeddingParser
52
+
53
+ # Initialize the parser
54
+ parser = BERTEmbeddingParser()
55
+
56
+ # Parse some text data
57
+ documents = parser.parse("Your text data here")
58
+
59
+ # Access the embeddings
60
+ for doc in documents:
61
+ print(doc.content)
62
+ ```
63
+
64
+ ## Want to help?
65
+
66
+ If you want to contribute to swarmauri-sdk, read up on our [guidelines for contributing](https://github.com/swarmauri/swarmauri-sdk/blob/master/contributing.md) that will help you get started.
67
+
@@ -0,0 +1,47 @@
1
+
2
+ ![Swamauri Logo](https://res.cloudinary.com/dbjmpekvl/image/upload/v1730099724/Swarmauri-logo-lockup-2048x757_hww01w.png)
3
+
4
+ <p align="center">
5
+ <a href="https://pypi.org/project/swarmauri_parser_bertembedding/">
6
+ <img src="https://img.shields.io/pypi/dm/swarmauri_parser_bertembedding" alt="PyPI - Downloads"/></a>
7
+ <a href="https://github.com/swarmauri/swarmauri-sdk/blob/master/pkgs/community/swarmauri_parser_bertembedding/README.md">
8
+ <img src="https://hits.seeyoufarm.com/api/count/incr/badge.svg?url=https://github.com/swarmauri/swarmauri-sdk/pkgs/community/swarmauri_parser_bertembedding/README.md&count_bg=%2379C83D&title_bg=%23555555&icon=&icon_color=%23E7E7E7&title=hits&edge_flat=false" alt="GitHub Hits"/></a>
9
+ <a href="https://pypi.org/project/swarmauri_parser_bertembedding/">
10
+ <img src="https://img.shields.io/pypi/pyversions/swarmauri_parser_bertembedding" alt="PyPI - Python Version"/></a>
11
+ <a href="https://pypi.org/project/swarmauri_parser_bertembedding/">
12
+ <img src="https://img.shields.io/pypi/l/swarmauri_parser_bertembedding" alt="PyPI - License"/></a>
13
+ <a href="https://pypi.org/project/swarmauri_parser_bertembedding/">
14
+ <img src="https://img.shields.io/pypi/v/swarmauri_parser_bertembedding?label=swarmauri_parser_bertembedding&color=green" alt="PyPI - swarmauri_parser_bertembedding"/></a>
15
+ </p>
16
+
17
+ ---
18
+
19
+ # Swarmauri Parser Bert Embedding
20
+
21
+ A parser that transforms input text into document embeddings using BERT.
22
+
23
+ ## Installation
24
+
25
+ ```bash
26
+ pip install swarmauri_parser_bertembedding
27
+ ```
28
+
29
+ ## Usage
30
+ Basic usage examples with code snippets
31
+ ```python
32
+ from swarmauri.parsers.BERTEmbeddingParser import BERTEmbeddingParser
33
+
34
+ # Initialize the parser
35
+ parser = BERTEmbeddingParser()
36
+
37
+ # Parse some text data
38
+ documents = parser.parse("Your text data here")
39
+
40
+ # Access the embeddings
41
+ for doc in documents:
42
+ print(doc.content)
43
+ ```
44
+
45
+ ## Want to help?
46
+
47
+ If you want to contribute to swarmauri-sdk, read up on our [guidelines for contributing](https://github.com/swarmauri/swarmauri-sdk/blob/master/contributing.md) that will help you get started.
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "swarmauri_parser_bertembedding"
3
- version = "0.7.0.dev12"
3
+ version = "0.7.1.dev1"
4
4
  description = "Swarmauri Bert Embedding Parser"
5
5
  license = "Apache-2.0"
6
6
  readme = "README.md"
@@ -45,7 +45,7 @@ log_cli_format = "%(asctime)s [%(levelname)s] %(message)s"
45
45
  log_cli_date_format = "%Y-%m-%d %H:%M:%S"
46
46
  asyncio_default_fixture_loop_scope = "function"
47
47
 
48
- [tool.project.entry-points."swarmauri.parsers"]
48
+ [project.entry-points.'swarmauri.parsers']
49
49
  BERTEmbeddingParser = "swarmauri_parser_bertembedding.BERTEmbeddingParser:BERTEmbeddingParser"
50
50
  [build-system]
51
51
  requires = ["poetry-core>=1.0.0"]
@@ -1,62 +0,0 @@
1
- Metadata-Version: 2.3
2
- Name: swarmauri_parser_bertembedding
3
- Version: 0.7.0.dev12
4
- Summary: Swarmauri Bert Embedding Parser
5
- License: Apache-2.0
6
- Author: Jacob Stewart
7
- Author-email: jacob@swarmauri.com
8
- Requires-Python: >=3.10,<3.13
9
- Classifier: License :: OSI Approved :: Apache Software License
10
- Classifier: Programming Language :: Python :: 3.10
11
- Classifier: Programming Language :: Python :: 3.11
12
- Classifier: Programming Language :: Python :: 3.12
13
- Requires-Dist: swarmauri_base
14
- Requires-Dist: swarmauri_core
15
- Requires-Dist: swarmauri_standard
16
- Requires-Dist: torch
17
- Requires-Dist: transformers (>=4.45.0)
18
- Description-Content-Type: text/markdown
19
-
20
- ![Swarmauri Logo](https://res.cloudinary.com/dbjmpekvl/image/upload/v1730099724/Swarmauri-logo-lockup-2048x757_hww01w.png)
21
-
22
- <div align="center">
23
-
24
- ![PyPI - Downloads](https://img.shields.io/pypi/dm/swarmauri-parser-bertembedding)
25
- ![PyPI - Python Version](https://img.shields.io/pypi/pyversions/swarmauri-parser-bertembedding)
26
- ![PyPI - License](https://img.shields.io/pypi/l/swarmauri-parser-bertembedding)
27
- ![PyPI - Version](https://img.shields.io/pypi/v/swarmauri-parser-bertembedding?label=swarmauri-parser-bertembedding&color=green)
28
-
29
- </div>
30
-
31
- ---
32
-
33
- # Swarmauri BERT Embedding Parser
34
-
35
- A parser that transforms input text into document embeddings using BERT.
36
-
37
- ## Installation
38
-
39
- ```bash
40
- pip install swarmauri_parser_bertembedding
41
- ```
42
-
43
- ## Usage
44
- Basic usage examples with code snippets
45
- ```python
46
- from swarmauri.parsers.BERTEmbeddingParser import BERTEmbeddingParser
47
-
48
- # Initialize the parser
49
- parser = BERTEmbeddingParser()
50
-
51
- # Parse some text data
52
- documents = parser.parse("Your text data here")
53
-
54
- # Access the embeddings
55
- for doc in documents:
56
- print(doc.content)
57
- ```
58
-
59
- ## Want to help?
60
-
61
- If you want to contribute to swarmauri-sdk, read up on our [guidelines for contributing](https://github.com/swarmauri/swarmauri-sdk/blob/master/contributing.md) that will help you get started.
62
-
@@ -1,42 +0,0 @@
1
- ![Swarmauri Logo](https://res.cloudinary.com/dbjmpekvl/image/upload/v1730099724/Swarmauri-logo-lockup-2048x757_hww01w.png)
2
-
3
- <div align="center">
4
-
5
- ![PyPI - Downloads](https://img.shields.io/pypi/dm/swarmauri-parser-bertembedding)
6
- ![PyPI - Python Version](https://img.shields.io/pypi/pyversions/swarmauri-parser-bertembedding)
7
- ![PyPI - License](https://img.shields.io/pypi/l/swarmauri-parser-bertembedding)
8
- ![PyPI - Version](https://img.shields.io/pypi/v/swarmauri-parser-bertembedding?label=swarmauri-parser-bertembedding&color=green)
9
-
10
- </div>
11
-
12
- ---
13
-
14
- # Swarmauri BERT Embedding Parser
15
-
16
- A parser that transforms input text into document embeddings using BERT.
17
-
18
- ## Installation
19
-
20
- ```bash
21
- pip install swarmauri_parser_bertembedding
22
- ```
23
-
24
- ## Usage
25
- Basic usage examples with code snippets
26
- ```python
27
- from swarmauri.parsers.BERTEmbeddingParser import BERTEmbeddingParser
28
-
29
- # Initialize the parser
30
- parser = BERTEmbeddingParser()
31
-
32
- # Parse some text data
33
- documents = parser.parse("Your text data here")
34
-
35
- # Access the embeddings
36
- for doc in documents:
37
- print(doc.content)
38
- ```
39
-
40
- ## Want to help?
41
-
42
- If you want to contribute to swarmauri-sdk, read up on our [guidelines for contributing](https://github.com/swarmauri/swarmauri-sdk/blob/master/contributing.md) that will help you get started.