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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: parallex
3
- Version: 0.1.2
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 covert the images to markdown using Batch API
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 coverts AI responses in structured output based on the page of the corresponding PDF
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 covert the images to markdown using Batch API
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 coverts AI responses in structured output based on the page of the corresponding PDF
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.2"
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