parallex 0.1.2__tar.gz → 0.1.3__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {parallex-0.1.2 → parallex-0.1.3}/PKG-INFO +7 -4
- {parallex-0.1.2 → parallex-0.1.3}/README.md +6 -3
- {parallex-0.1.2 → parallex-0.1.3}/pyproject.toml +1 -1
- {parallex-0.1.2 → parallex-0.1.3}/LICENSE +0 -0
- {parallex-0.1.2 → parallex-0.1.3}/parallex/__init__.py +0 -0
- {parallex-0.1.2 → parallex-0.1.3}/parallex/ai/batch_processor.py +0 -0
- {parallex-0.1.2 → parallex-0.1.3}/parallex/ai/open_ai_client.py +0 -0
- {parallex-0.1.2 → parallex-0.1.3}/parallex/ai/output_processor.py +0 -0
- {parallex-0.1.2 → parallex-0.1.3}/parallex/ai/uploader.py +0 -0
- {parallex-0.1.2 → parallex-0.1.3}/parallex/file_management/converter.py +0 -0
- {parallex-0.1.2 → parallex-0.1.3}/parallex/file_management/file_finder.py +0 -0
- {parallex-0.1.2 → parallex-0.1.3}/parallex/file_management/utils.py +0 -0
- {parallex-0.1.2 → parallex-0.1.3}/parallex/models/batch_file.py +0 -0
- {parallex-0.1.2 → parallex-0.1.3}/parallex/models/image_file.py +0 -0
- {parallex-0.1.2 → parallex-0.1.3}/parallex/models/page_response.py +0 -0
- {parallex-0.1.2 → parallex-0.1.3}/parallex/models/parallex_callable_output.py +0 -0
- {parallex-0.1.2 → parallex-0.1.3}/parallex/models/raw_file.py +0 -0
- {parallex-0.1.2 → parallex-0.1.3}/parallex/models/upload_batch.py +0 -0
- {parallex-0.1.2 → parallex-0.1.3}/parallex/parallex.py +0 -0
- {parallex-0.1.2 → parallex-0.1.3}/parallex/utils/constants.py +0 -0
- {parallex-0.1.2 → parallex-0.1.3}/parallex/utils/logger.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: parallex
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.3
|
4
4
|
Summary: PDF to markdown using Azure OpenAI batch processing
|
5
5
|
Home-page: https://github.com/Summed-AI/parallex
|
6
6
|
Author: Jeff Hostetler
|
@@ -22,10 +22,10 @@ Description-Content-Type: text/markdown
|
|
22
22
|
|
23
23
|
### What it does
|
24
24
|
- Converts PDF into images
|
25
|
-
- Makes requests to Azure OpenAI to
|
25
|
+
- Makes requests to Azure OpenAI to convert the images to markdown using Batch API
|
26
26
|
- [Azure OpenAPI Batch](https://learn.microsoft.com/en-us/azure/ai-services/openai/how-to/batch?tabs=standard-input%2Cpython-secure&pivots=programming-language-python)
|
27
27
|
- [OpenAPI Batch](https://platform.openai.com/docs/guides/batch)
|
28
|
-
- Polls for batch completion and then
|
28
|
+
- Polls for batch completion and then converts AI responses in structured output based on the page of the corresponding PDF
|
29
29
|
- Post batch processing to do what you wish with the resulting markdown
|
30
30
|
|
31
31
|
### Requirements
|
@@ -34,9 +34,12 @@ Parallex uses `graphicsmagick` for the conversion of PDF to images.
|
|
34
34
|
brew install graphicsmagick
|
35
35
|
```
|
36
36
|
|
37
|
+
### Installation
|
38
|
+
```bash
|
39
|
+
pip install parallex
|
40
|
+
```
|
37
41
|
|
38
42
|
### Example usage
|
39
|
-
|
40
43
|
```python
|
41
44
|
import os
|
42
45
|
from parallex.models.parallex_callable_output import ParallexCallableOutput
|
@@ -2,10 +2,10 @@
|
|
2
2
|
|
3
3
|
### What it does
|
4
4
|
- Converts PDF into images
|
5
|
-
- Makes requests to Azure OpenAI to
|
5
|
+
- Makes requests to Azure OpenAI to convert the images to markdown using Batch API
|
6
6
|
- [Azure OpenAPI Batch](https://learn.microsoft.com/en-us/azure/ai-services/openai/how-to/batch?tabs=standard-input%2Cpython-secure&pivots=programming-language-python)
|
7
7
|
- [OpenAPI Batch](https://platform.openai.com/docs/guides/batch)
|
8
|
-
- Polls for batch completion and then
|
8
|
+
- Polls for batch completion and then converts AI responses in structured output based on the page of the corresponding PDF
|
9
9
|
- Post batch processing to do what you wish with the resulting markdown
|
10
10
|
|
11
11
|
### Requirements
|
@@ -14,9 +14,12 @@ Parallex uses `graphicsmagick` for the conversion of PDF to images.
|
|
14
14
|
brew install graphicsmagick
|
15
15
|
```
|
16
16
|
|
17
|
+
### Installation
|
18
|
+
```bash
|
19
|
+
pip install parallex
|
20
|
+
```
|
17
21
|
|
18
22
|
### Example usage
|
19
|
-
|
20
23
|
```python
|
21
24
|
import os
|
22
25
|
from parallex.models.parallex_callable_output import ParallexCallableOutput
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[tool.poetry]
|
2
2
|
name = "parallex"
|
3
|
-
version = "0.1.
|
3
|
+
version = "0.1.3"
|
4
4
|
description = "PDF to markdown using Azure OpenAI batch processing"
|
5
5
|
authors = ["Jeff Hostetler <jeff@summed.ai>", "Kevin Bao <kevin@summed.ai>"]
|
6
6
|
repository = "https://github.com/Summed-AI/parallex"
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|