retab 0.0.36__py3-none-any.whl → 0.0.38__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.
- retab/__init__.py +4 -0
- {uiform → retab}/_resource.py +5 -5
- {uiform → retab}/_utils/ai_models.py +2 -2
- {uiform → retab}/_utils/benchmarking.py +15 -16
- {uiform → retab}/_utils/chat.py +29 -34
- {uiform → retab}/_utils/display.py +0 -3
- {uiform → retab}/_utils/json_schema.py +9 -14
- {uiform → retab}/_utils/mime.py +11 -14
- {uiform → retab}/_utils/responses.py +16 -10
- {uiform → retab}/_utils/stream_context_managers.py +1 -1
- {uiform → retab}/_utils/usage/usage.py +31 -31
- {uiform → retab}/client.py +54 -53
- {uiform → retab}/resources/consensus/client.py +19 -38
- {uiform → retab}/resources/consensus/completions.py +36 -59
- {uiform → retab}/resources/consensus/completions_stream.py +35 -47
- {uiform → retab}/resources/consensus/responses.py +37 -86
- {uiform → retab}/resources/consensus/responses_stream.py +41 -89
- retab/resources/documents/client.py +455 -0
- {uiform → retab}/resources/documents/extractions.py +192 -101
- {uiform → retab}/resources/evals.py +56 -43
- retab/resources/evaluations/__init__.py +3 -0
- retab/resources/evaluations/client.py +301 -0
- retab/resources/evaluations/documents.py +233 -0
- retab/resources/evaluations/iterations.py +452 -0
- {uiform → retab}/resources/files.py +2 -2
- {uiform → retab}/resources/jsonlUtils.py +225 -221
- retab/resources/models.py +73 -0
- retab/resources/processors/automations/client.py +244 -0
- {uiform → retab}/resources/processors/automations/endpoints.py +79 -120
- retab/resources/processors/automations/links.py +294 -0
- {uiform → retab}/resources/processors/automations/logs.py +30 -19
- retab/resources/processors/automations/mailboxes.py +397 -0
- retab/resources/processors/automations/outlook.py +337 -0
- {uiform → retab}/resources/processors/automations/tests.py +22 -25
- {uiform → retab}/resources/processors/client.py +181 -166
- {uiform → retab}/resources/schemas.py +78 -66
- {uiform → retab}/resources/secrets/external_api_keys.py +1 -5
- retab/resources/secrets/webhook.py +64 -0
- {uiform → retab}/resources/usage.py +41 -4
- {uiform → retab}/types/ai_models.py +17 -17
- {uiform → retab}/types/automations/cron.py +19 -12
- {uiform → retab}/types/automations/endpoints.py +7 -4
- {uiform → retab}/types/automations/links.py +7 -3
- {uiform → retab}/types/automations/mailboxes.py +10 -10
- {uiform → retab}/types/automations/outlook.py +15 -11
- {uiform → retab}/types/automations/webhooks.py +1 -1
- retab/types/browser_canvas.py +3 -0
- retab/types/chat.py +8 -0
- {uiform → retab}/types/completions.py +12 -15
- retab/types/consensus.py +19 -0
- {uiform → retab}/types/db/annotations.py +3 -3
- {uiform → retab}/types/db/files.py +8 -6
- {uiform → retab}/types/documents/create_messages.py +20 -22
- {uiform → retab}/types/documents/extractions.py +71 -26
- {uiform → retab}/types/evals.py +5 -5
- retab/types/evaluations/__init__.py +31 -0
- retab/types/evaluations/documents.py +30 -0
- retab/types/evaluations/iterations.py +112 -0
- retab/types/evaluations/model.py +73 -0
- retab/types/events.py +79 -0
- {uiform → retab}/types/extractions.py +36 -13
- retab/types/inference_settings.py +15 -0
- retab/types/jobs/base.py +54 -0
- retab/types/jobs/batch_annotation.py +12 -0
- {uiform → retab}/types/jobs/evaluation.py +1 -2
- {uiform → retab}/types/logs.py +37 -34
- retab/types/metrics.py +32 -0
- {uiform → retab}/types/mime.py +22 -20
- {uiform → retab}/types/modalities.py +10 -10
- retab/types/predictions.py +19 -0
- {uiform → retab}/types/schemas/enhance.py +4 -2
- {uiform → retab}/types/schemas/evaluate.py +7 -4
- {uiform → retab}/types/schemas/generate.py +6 -3
- {uiform → retab}/types/schemas/layout.py +1 -1
- {uiform → retab}/types/schemas/object.py +16 -17
- {uiform → retab}/types/schemas/templates.py +1 -3
- {uiform → retab}/types/secrets/external_api_keys.py +0 -1
- {uiform → retab}/types/standards.py +18 -1
- {retab-0.0.36.dist-info → retab-0.0.38.dist-info}/METADATA +78 -77
- retab-0.0.38.dist-info/RECORD +107 -0
- retab-0.0.38.dist-info/top_level.txt +1 -0
- retab-0.0.36.dist-info/RECORD +0 -96
- retab-0.0.36.dist-info/top_level.txt +0 -1
- uiform/__init__.py +0 -4
- uiform/_utils/benchmarking copy.py +0 -588
- uiform/resources/documents/client.py +0 -255
- uiform/resources/models.py +0 -45
- uiform/resources/processors/automations/client.py +0 -78
- uiform/resources/processors/automations/links.py +0 -356
- uiform/resources/processors/automations/mailboxes.py +0 -435
- uiform/resources/processors/automations/outlook.py +0 -444
- uiform/resources/secrets/webhook.py +0 -62
- uiform/types/chat.py +0 -8
- uiform/types/consensus.py +0 -10
- uiform/types/events.py +0 -76
- uiform/types/jobs/base.py +0 -150
- uiform/types/jobs/batch_annotation.py +0 -22
- {uiform → retab}/_utils/__init__.py +0 -0
- {uiform → retab}/_utils/usage/__init__.py +0 -0
- {uiform → retab}/py.typed +0 -0
- {uiform → retab}/resources/__init__.py +0 -0
- {uiform → retab}/resources/consensus/__init__.py +0 -0
- {uiform → retab}/resources/documents/__init__.py +0 -0
- {uiform → retab}/resources/finetuning.py +0 -0
- {uiform → retab}/resources/openai_example.py +0 -0
- {uiform → retab}/resources/processors/__init__.py +0 -0
- {uiform → retab}/resources/processors/automations/__init__.py +0 -0
- {uiform → retab}/resources/prompt_optimization.py +0 -0
- {uiform → retab}/resources/secrets/__init__.py +0 -0
- {uiform → retab}/resources/secrets/client.py +0 -0
- {uiform → retab}/types/__init__.py +0 -0
- {uiform → retab}/types/automations/__init__.py +0 -0
- {uiform → retab}/types/db/__init__.py +0 -0
- {uiform → retab}/types/documents/__init__.py +0 -0
- {uiform → retab}/types/documents/correct_orientation.py +0 -0
- {uiform → retab}/types/jobs/__init__.py +0 -0
- {uiform → retab}/types/jobs/finetune.py +0 -0
- {uiform → retab}/types/jobs/prompt_optimization.py +0 -0
- {uiform → retab}/types/jobs/webcrawl.py +0 -0
- {uiform → retab}/types/pagination.py +0 -0
- {uiform → retab}/types/schemas/__init__.py +0 -0
- {uiform → retab}/types/secrets/__init__.py +0 -0
- {retab-0.0.36.dist-info → retab-0.0.38.dist-info}/WHEEL +0 -0
@@ -1,11 +1,11 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: retab
|
3
|
-
Version: 0.0.
|
4
|
-
Summary:
|
5
|
-
Home-page: https://github.com/
|
6
|
-
Author:
|
7
|
-
Author-email: contact@
|
8
|
-
Project-URL: Team website, https://
|
3
|
+
Version: 0.0.38
|
4
|
+
Summary: Retab official python library
|
5
|
+
Home-page: https://github.com/Retab-dev/retab
|
6
|
+
Author: Retab
|
7
|
+
Author-email: contact@retab.com
|
8
|
+
Project-URL: Team website, https://retab.com
|
9
9
|
Classifier: Programming Language :: Python :: 3
|
10
10
|
Classifier: License :: OSI Approved :: MIT License
|
11
11
|
Classifier: Operating System :: POSIX :: Linux
|
@@ -39,19 +39,20 @@ Requires-Dist: google-generativeai
|
|
39
39
|
Requires-Dist: anthropic
|
40
40
|
Requires-Dist: tiktoken
|
41
41
|
Requires-Dist: truststore
|
42
|
+
Requires-Dist: ruff
|
42
43
|
|
43
|
-
#
|
44
|
+
# Retab
|
44
45
|
|
45
46
|
<div align="center" style="margin-bottom: 1em;">
|
46
47
|
|
47
|
-
<img src="https://raw.githubusercontent.com/
|
48
|
+
<img src="https://raw.githubusercontent.com/Retab/retab/refs/heads/main/assets/retab-logo.png" alt="Retab Logo" width="150">
|
48
49
|
|
49
50
|
|
50
51
|
*The AI Automation Platform*
|
51
52
|
|
52
|
-
Made with love by the team at [
|
53
|
+
Made with love by the team at [Retab](https://retab.dev) 🤍.
|
53
54
|
|
54
|
-
[Our Website](https://
|
55
|
+
[Our Website](https://retab.dev) | [Documentation](https://docs.retab.dev/get-started/introduction) | [Discord](https://discord.com/invite/vc5tWRPqag) | [Twitter](https://x.com/retabAPI)
|
55
56
|
|
56
57
|
|
57
58
|
</div>
|
@@ -60,16 +61,16 @@ Made with love by the team at [UiForm](https://uiform.com) 🤍.
|
|
60
61
|
|
61
62
|
## How It Works
|
62
63
|
|
63
|
-
|
64
|
+
Retab allows you to easily create document processing automations. Here is the general workflow:
|
64
65
|
|
65
66
|
```mermaid
|
66
67
|
sequenceDiagram
|
67
|
-
User ->>
|
68
|
-
|
69
|
-
|
70
|
-
AI Provider -->>
|
71
|
-
|
72
|
-
|
68
|
+
User ->> Retab: File Upload
|
69
|
+
Retab -->> Retab: Preprocessing
|
70
|
+
Retab ->> AI Provider: Request on your behalf
|
71
|
+
AI Provider -->> Retab: Structured Generation
|
72
|
+
Retab ->> Webhook: Send result
|
73
|
+
Retab ->> User: Send Confirmation
|
73
74
|
```
|
74
75
|
|
75
76
|
---
|
@@ -94,17 +95,17 @@ You come with your own API key from your favorite AI provider, and we handle the
|
|
94
95
|
We currently support [OpenAI](https://platform.openai.com/docs/overview), [Anthropic](https://www.anthropic.com/api), [Gemini](https://aistudio.google.com/prompts/new_chat) and [xAI](https://x.ai/api) models.
|
95
96
|
|
96
97
|
<p align="center">
|
97
|
-
<img src="https://raw.githubusercontent.com/
|
98
|
+
<img src="https://raw.githubusercontent.com/Retab/retab/refs/heads/main/assets/supported_models.png" alt="Supported Models" width="600">
|
98
99
|
</p>
|
99
100
|
|
100
101
|
---
|
101
102
|
|
102
103
|
## Quickstart
|
103
104
|
|
104
|
-
Explore our [Playground](https://www.
|
105
|
+
Explore our [Playground](https://www.retab.dev/dashboard/playground) and create your first automations easily 🚀!
|
105
106
|
|
106
107
|
<p align="center">
|
107
|
-
<img src="https://raw.githubusercontent.com/
|
108
|
+
<img src="https://raw.githubusercontent.com/Retab/retab/refs/heads/main/assets/retab-playground.png" alt="Retab Playground" width="600">
|
108
109
|
</p>
|
109
110
|
|
110
111
|
---
|
@@ -113,10 +114,10 @@ Explore our [Playground](https://www.uiform.com/dashboard/playground) and create
|
|
113
114
|
|
114
115
|
## Dev Mode 🔧
|
115
116
|
|
116
|
-
You need more control? You can access the [Documentation](https://docs.
|
117
|
+
You need more control? You can access the [Documentation](https://docs.retab.dev/get-started/introduction) of our **Python SDK**.
|
117
118
|
|
118
119
|
1. **Setup the Python SDK**
|
119
|
-
> Install the
|
120
|
+
> Install the Retab Python SDK and configure your API keys to start processing documents with your preferred AI provider.
|
120
121
|
|
121
122
|
2. **Create your JSON schema**
|
122
123
|
> Define the structure of the data you want to extract from your documents using our schema format with custom prompting capabilities.
|
@@ -132,32 +133,32 @@ You need more control? You can access the [Documentation](https://docs.uiform.co
|
|
132
133
|
|
133
134
|
### Step 1: Setup of the Python SDK
|
134
135
|
|
135
|
-
To get started, install the `
|
136
|
+
To get started, install the `retab` package using pip:
|
136
137
|
|
137
138
|
```bash
|
138
|
-
pip install
|
139
|
+
pip install retab
|
139
140
|
```
|
140
141
|
|
141
|
-
Then, [create your API key on
|
142
|
+
Then, [create your API key on retab.dev](https://www.retab.dev).
|
142
143
|
|
143
144
|
Create another API key by you favorite API key provider.
|
144
145
|
|
145
146
|
**Reminder**: We currently support [OpenAI](https://platform.openai.com/docs/overview), [Anthropic](https://www.anthropic.com/api), [Gemini](https://aistudio.google.com/prompts/new_chat) and [xAI](https://x.ai/api) models.
|
146
147
|
|
147
|
-
As we will use your API key to make requests to OpenAI on your behalf within an automation, you need to store your API key in the
|
148
|
+
As we will use your API key to make requests to OpenAI on your behalf within an automation, you need to store your API key in the Retab secrets manager:
|
148
149
|
|
149
150
|
```
|
150
151
|
OPENAI_API_KEY=sk-xxxxxxxxx
|
151
|
-
|
152
|
+
RETAB_API_KEY=sk_retab_xxxxxxxxx
|
152
153
|
```
|
153
154
|
|
154
155
|
```bash
|
155
|
-
import
|
156
|
+
import retab
|
156
157
|
import os
|
157
158
|
|
158
|
-
|
159
|
+
reclient = retab.Retab()
|
159
160
|
|
160
|
-
|
161
|
+
reclient.secrets.external_api_keys.create(
|
161
162
|
provider="OpenAI",
|
162
163
|
api_key=os.getenv("OPENAI_API_KEY")
|
163
164
|
)
|
@@ -166,14 +167,14 @@ uiclient.secrets.external_api_keys.create(
|
|
166
167
|
#### Process your first document with the create_messages method:
|
167
168
|
|
168
169
|
```bash
|
169
|
-
from
|
170
|
+
from retab import Retab
|
170
171
|
from openai import OpenAI
|
171
172
|
|
172
|
-
# Initialize
|
173
|
-
|
173
|
+
# Initialize Retab client
|
174
|
+
reclient = Retab()
|
174
175
|
|
175
176
|
# Convert any document into LLM-ready format
|
176
|
-
doc_msg =
|
177
|
+
doc_msg = reclient.documents.create_messages(
|
177
178
|
document = "invoice.pdf" # Works with PDFs, Excel, emails, etc.
|
178
179
|
)
|
179
180
|
|
@@ -195,10 +196,10 @@ We use a standard JSON Schema with custom annotations (`X-SystemPrompt`, `X-Fiel
|
|
195
196
|
|
196
197
|
These annotations help guide the LLM’s behavior and improve extraction accuracy.
|
197
198
|
|
198
|
-
You can learn more about these in our [JSON Schema documentation](https://docs.
|
199
|
+
You can learn more about these in our [JSON Schema documentation](https://docs.retab.dev/get-started/prompting-with-the-JSON-schema).
|
199
200
|
|
200
201
|
```bash
|
201
|
-
from
|
202
|
+
from retab import Retab
|
202
203
|
from openai import OpenAI
|
203
204
|
from pydantic import BaseModel, Field, ConfigDict
|
204
205
|
|
@@ -224,11 +225,11 @@ class Invoice(BaseModel):
|
|
224
225
|
)
|
225
226
|
|
226
227
|
# Process document and extract data
|
227
|
-
|
228
|
-
doc_msg =
|
228
|
+
reclient = Retab()
|
229
|
+
doc_msg = reclient.documents.create_messages(
|
229
230
|
document = "invoice.pdf"
|
230
231
|
)
|
231
|
-
schema_obj =
|
232
|
+
schema_obj = reclient.schemas.load(
|
232
233
|
pydantic_model = Invoice
|
233
234
|
)
|
234
235
|
|
@@ -243,7 +244,7 @@ completion = client.beta.chat.completions.parse(
|
|
243
244
|
print("Extracted data:", completion.choices[0].message.parsed)
|
244
245
|
|
245
246
|
# Validate the response against the original schema if you want to remove the reasoning fields
|
246
|
-
from
|
247
|
+
from retab._utils.json_schema import filter_auxiliary_fields_json
|
247
248
|
assert completion.choices[0].message.content is not None
|
248
249
|
extraction = schema_obj.pydantic_model.model_validate(
|
249
250
|
filter_auxiliary_fields_json(completion.choices[0].message.content, schema_obj.pydantic_model)
|
@@ -261,7 +262,7 @@ Below is an example of a simple FastAPI application with a webhook endpoint:
|
|
261
262
|
```bash
|
262
263
|
from fastapi import FastAPI, Request
|
263
264
|
from fastapi.responses import JSONResponse
|
264
|
-
from
|
265
|
+
from retab.types.automations.webhooks import WebhookRequest
|
265
266
|
from pydantic import BaseModel, Field, ConfigDict
|
266
267
|
|
267
268
|
app = FastAPI()
|
@@ -292,53 +293,53 @@ curl -X POST "http://localhost:8000/webhook" \
|
|
292
293
|
|
293
294
|
### Step 4: Create your automation
|
294
295
|
|
295
|
-
Finally, integrate the webhook with your automation system using the `
|
296
|
+
Finally, integrate the webhook with your automation system using the `retab` client.
|
296
297
|
|
297
298
|
This example demonstrates how to create an automation that triggers the webhook when a matching event occurs:
|
298
299
|
|
299
300
|
```bash
|
300
|
-
from
|
301
|
+
from retab import Retab
|
301
302
|
|
302
|
-
# Initialize the
|
303
|
-
|
303
|
+
# Initialize the Retab client
|
304
|
+
reclient = Retab()
|
304
305
|
|
305
306
|
# Create an automation that uses the webhook URL from Step 2
|
306
|
-
automation =
|
307
|
-
email="invoices@mailbox.
|
307
|
+
automation = reclient.processors.automations.mailboxes.create(
|
308
|
+
email="invoices@mailbox.retab.dev",
|
308
309
|
model="gpt-4.1-nano",
|
309
310
|
json_schema=Invoice.model_json_schema(), # use the pydantic model to create the json schema
|
310
311
|
webhook_url="https://your-server.com/webhook", # Replace with your actual webhook URL
|
311
312
|
)
|
312
313
|
```
|
313
314
|
|
314
|
-
At any email sent to `invoices@mailbox.
|
315
|
+
At any email sent to `invoices@mailbox.retab.dev`, the automation will send a POST request to your FastAPI webhook endpoint, where the payload can be processed.
|
315
316
|
|
316
|
-
You can see the automation you just created on your [dashboard](https://www.
|
317
|
+
You can see the automation you just created on your [dashboard](https://www.retab.dev/dashboard/processors)!
|
317
318
|
|
318
319
|
### Step 5: Test your automation
|
319
320
|
|
320
321
|
Finally, you can test the automation rapidly with the test functions of the sdk:
|
321
322
|
|
322
323
|
```bash
|
323
|
-
from
|
324
|
+
from retab import Retab
|
324
325
|
|
325
|
-
# Initialize the
|
326
|
-
|
326
|
+
# Initialize the Retab client
|
327
|
+
reclient = Retab()
|
327
328
|
|
328
329
|
# If you just want to send a test request to your webhook
|
329
|
-
log =
|
330
|
-
email="test-mailbox-local@devmail.
|
330
|
+
log = reclient.processors.automations.mailboxes.tests.webhook(
|
331
|
+
email="test-mailbox-local@devmail.retab.dev",
|
331
332
|
)
|
332
333
|
|
333
334
|
# If you want to test the file processing logic:
|
334
|
-
log =
|
335
|
-
email="test-mailbox-local@devmail.
|
335
|
+
log = reclient.processors.automations.mailboxes.tests.process(
|
336
|
+
email="test-mailbox-local@devmail.retab.dev",
|
336
337
|
document="your_invoice_email.eml"
|
337
338
|
)
|
338
339
|
|
339
340
|
# If you want to test a full email forwarding
|
340
|
-
log =
|
341
|
-
email="
|
341
|
+
log = reclient.processors.automations.mailboxes.tests.forward(
|
342
|
+
email="retab-quickstart@mailbox.retab.dev",
|
342
343
|
document="your_invoice_email.eml"
|
343
344
|
)
|
344
345
|
```
|
@@ -346,33 +347,33 @@ log = uiclient.processors.automations.mailboxes.tests.forward(
|
|
346
347
|
> 💡 **Tip:** You can also test your webhook locally by overriding the webhook URL set in the automation.
|
347
348
|
|
348
349
|
```bash
|
349
|
-
from
|
350
|
+
from retab import Retab
|
350
351
|
|
351
|
-
|
352
|
+
reclient = Retab()
|
352
353
|
|
353
354
|
# If you just want to send a test request to your webhook
|
354
|
-
log =
|
355
|
-
email="test-mailbox-local@devmail.
|
355
|
+
log = reclient.processors.automations.mailboxes.tests.webhook(
|
356
|
+
email="test-mailbox-local@devmail.retab.dev",
|
356
357
|
webhook_url="http://localhost:8000/webhook" # If you want to try your webhook locally, you can override the webhook url set in the automation
|
357
358
|
)
|
358
359
|
```
|
359
360
|
|
360
361
|
And that's it! You can start processing documents at scale!
|
361
|
-
You have 1000 free requests to get started, and you can [subscribe](https://www.
|
362
|
+
You have 1000 free requests to get started, and you can [subscribe](https://www.retab.dev) to the pro plan to get more.
|
362
363
|
|
363
364
|
But this minimalistic example is just the beginning.
|
364
365
|
|
365
|
-
Continue reading to learn more about how to use
|
366
|
+
Continue reading to learn more about how to use Retab **to its full potential** 🔥.
|
366
367
|
|
367
368
|
---
|
368
369
|
|
369
370
|
## Go further
|
370
371
|
|
371
|
-
- [Prompt Engineering Guide](https://docs.
|
372
|
-
- [General Concepts](https://docs.
|
373
|
-
- [Consensus](https://docs.
|
374
|
-
- [Create mailboxes](https://docs.
|
375
|
-
- [Create links](https://docs.
|
372
|
+
- [Prompt Engineering Guide](https://docs.retab.dev/get-started/prompting-with-the-json-schema)
|
373
|
+
- [General Concepts](https://docs.retab.dev/get-started/General-Concepts)
|
374
|
+
- [Consensus](https://docs.retab.dev/SDK/General-Concepts#consensus)
|
375
|
+
- [Create mailboxes](https://docs.retab.dev/SDK/Automations#mailbox)
|
376
|
+
- [Create links](https://docs.retab.dev/SDK/Automations#link)
|
376
377
|
- Finetuning (coming soon)
|
377
378
|
- Prompt optimization (coming soon)
|
378
379
|
- Data-Labelling with our AI-powered annotator (coming soon)
|
@@ -381,12 +382,12 @@ Continue reading to learn more about how to use UiForm **to its full potential**
|
|
381
382
|
|
382
383
|
## Jupyter Notebooks
|
383
384
|
|
384
|
-
You can view minimal notebooks that demonstrate how to use
|
385
|
+
You can view minimal notebooks that demonstrate how to use Retab to process documents:
|
385
386
|
|
386
|
-
- [Mailbox creation quickstart](https://github.com/
|
387
|
-
- [Upload Links creation quickstart](https://github.com/
|
388
|
-
- [Document Extractions quickstart](https://github.com/
|
389
|
-
- [Document Extractions quickstart - Async](https://github.com/
|
387
|
+
- [Mailbox creation quickstart](https://github.com/Retab-dev/retab/blob/main/notebooks/mailboxes_quickstart.ipynb)
|
388
|
+
- [Upload Links creation quickstart](https://github.com/Retab-dev/retab/blob/main/notebooks/links_quickstart.ipynb)
|
389
|
+
- [Document Extractions quickstart](https://github.com/Retab-dev/retab/blob/main/notebooks/Quickstart.ipynb)
|
390
|
+
- [Document Extractions quickstart - Async](https://github.com/Retab-dev/retab/blob/main/notebooks/Quickstart-Async.ipynb)
|
390
391
|
|
391
392
|
---
|
392
393
|
|
@@ -394,12 +395,12 @@ You can view minimal notebooks that demonstrate how to use UiForm to process doc
|
|
394
395
|
|
395
396
|
Let's create the future of document processing together!
|
396
397
|
|
397
|
-
Join our [discord community](https://discord.com/invite/vc5tWRPqag) to share tips, discuss best practices, and showcase what you build. Or just [tweet](https://x.com/
|
398
|
+
Join our [discord community](https://discord.com/invite/vc5tWRPqag) to share tips, discuss best practices, and showcase what you build. Or just [tweet](https://x.com/retabAPI) at us.
|
398
399
|
|
399
|
-
We can't wait to see how you'll use
|
400
|
+
We can't wait to see how you'll use Retab.
|
400
401
|
|
401
402
|
- [Discord](https://discord.com/invite/vc5tWRPqag)
|
402
|
-
- [Twitter](https://x.com/
|
403
|
+
- [Twitter](https://x.com/retabAPI)
|
403
404
|
|
404
405
|
|
405
406
|
## Roadmap
|
@@ -0,0 +1,107 @@
|
|
1
|
+
retab/__init__.py,sha256=sRurau6z8m4pn7VFKdHr9FyNA9Ffhvg064i2NF0RmPc,124
|
2
|
+
retab/_resource.py,sha256=JfAU4UTa05ugWfbrpO7fsVr_pFewht99NkoIfK6kBQM,577
|
3
|
+
retab/client.py,sha256=ebU_g0BfIJ6Lz-XsHjlMtomTBy4V_lDDgLTC0AYzDZE,29768
|
4
|
+
retab/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
5
|
+
retab/_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
6
|
+
retab/_utils/ai_models.py,sha256=mnnUWMkiBD8Xu-K72gkU621OVFCJTdaTc2_vDzuPpNo,3835
|
7
|
+
retab/_utils/benchmarking.py,sha256=ZSuVcRkYr4gD90yezAv6TuKaFdj2ulc5d5x3lXLbQss,17849
|
8
|
+
retab/_utils/chat.py,sha256=ZHt6oEX2lZl8O0tIj-rHnqgmDbHxMYEWPkx0fArvojo,14352
|
9
|
+
retab/_utils/display.py,sha256=ZFPbiBnwEWGR-suS8e9Xilz9OqyYRDwsKYWfbFSJPJM,18868
|
10
|
+
retab/_utils/json_schema.py,sha256=vbIg4NqREBq_eNbYdBTGw5ykhUmKkSiVRAahAOrWEZg,82237
|
11
|
+
retab/_utils/mime.py,sha256=S6pH_CmDc7fnb14PIoK3XALwb_Quha34a112joyUNmY,5723
|
12
|
+
retab/_utils/responses.py,sha256=aLAoai8STpIyyf8f2y3uuak4EdBFzn0lPc6JNV7TLrk,6999
|
13
|
+
retab/_utils/stream_context_managers.py,sha256=gI1gVQSj3nWz6Mvjz7Ix5AiY0g6vSL-c2tPfuP04izo,2314
|
14
|
+
retab/_utils/usage/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
15
|
+
retab/_utils/usage/usage.py,sha256=gMDC4WCKn4xU8X6y30xpYgsueUE_Wcm1AXiSUG0za4M,12918
|
16
|
+
retab/resources/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
17
|
+
retab/resources/evals.py,sha256=jRgHsFDsoZoTVpFNAtJm9rW1zQGdceLqZ522Mx1-bfo,29928
|
18
|
+
retab/resources/files.py,sha256=-_GejfQjKEk10HHb5npmLOA9cUnVHic2ZQntE8tw4TQ,954
|
19
|
+
retab/resources/finetuning.py,sha256=Rx8XcqB00UIjEDZcCGp5fM2yz5TW1j36aBicrTa0uAY,2587
|
20
|
+
retab/resources/jsonlUtils.py,sha256=Iq6vvdU7tUZAAheoldl85cGtctJztlg1T9xkGuo775o,45157
|
21
|
+
retab/resources/models.py,sha256=4WidFBnTGZEA65DSn2pLP2SRnCVXkMTw7o_m8xVCFC4,2469
|
22
|
+
retab/resources/openai_example.py,sha256=yz34KvfCvHTZ-AJ9GV-N7ljTTSWBmQEQNMHY2FUbEi4,522
|
23
|
+
retab/resources/prompt_optimization.py,sha256=BJkE7L1w0Z88sR9c1evD8ti4Zqr_xHCFSK4OJmV_M0k,3489
|
24
|
+
retab/resources/schemas.py,sha256=YakiA6aqiiusO8BIe_PF2eKC0lTf7Z3Zh1hxeoN8AtI,16057
|
25
|
+
retab/resources/usage.py,sha256=OmJMPwmP1TBuZmMKrjaGWnl2mQ9VbQDKSAm6l7Tsaf4,13601
|
26
|
+
retab/resources/consensus/__init__.py,sha256=0b3MSOFiYPwkNTrs_dBPRhwSl3kuk8BtG5QXofIUb9M,89
|
27
|
+
retab/resources/consensus/client.py,sha256=D2TeqqCp0ZvqvQLAe1i3nW8nnf-Ms6zNEXRA9C26TQI,3705
|
28
|
+
retab/resources/consensus/completions.py,sha256=MzHfVxg_1d5P3eHYZhCgR8b0CnfZBjUvjaUZTEzLVRc,8331
|
29
|
+
retab/resources/consensus/completions_stream.py,sha256=JDrMAbeC8XwfW_fjaTlTbyf10_2lSFNehcaJELmOUFk,10830
|
30
|
+
retab/resources/consensus/responses.py,sha256=tapQ_Kso400Gq68PzDv8uSzLVhE5FJCo2ZrVBLoX0rs,9921
|
31
|
+
retab/resources/consensus/responses_stream.py,sha256=vhdKF1txU_BzkFJm1rcTELslJsG-o_t-YIacw_gps04,11658
|
32
|
+
retab/resources/documents/__init__.py,sha256=OjXmngFN0RKqO4SI-mJBNzr6Ex6rMxfq0DxaqzP0RQs,89
|
33
|
+
retab/resources/documents/client.py,sha256=_Z_O6awArjMQ3ze7fS67KdZ5fTIS6bLIdCrYUtMqwVg,20901
|
34
|
+
retab/resources/documents/extractions.py,sha256=yfsyNdvK8Jn2j7H5LldW31nYtbNeddhH9t7ANC_tf7Q,25546
|
35
|
+
retab/resources/evaluations/__init__.py,sha256=3npbUDbxYn3ihnUKV7PRYNBYqL7MZ9AwhQHr7LaIESg,97
|
36
|
+
retab/resources/evaluations/client.py,sha256=SdI-m_8V0BApparlHO1mYFwvjAGWsHBKD_-Z3ZLcdq0,10658
|
37
|
+
retab/resources/evaluations/documents.py,sha256=w28pC-sv67HBVGGT2wyU2eJS1oKnYSA-WHp5vffwK60,9475
|
38
|
+
retab/resources/evaluations/iterations.py,sha256=mlkkECATlju6w2SarJuhuLIIJ9L-Prv3499xTdl7Y5g,17643
|
39
|
+
retab/resources/processors/__init__.py,sha256=w1HrMdSi3xlrcEDFMQ9BA7rbUhOFWSTkTKkkR2PfFHQ,93
|
40
|
+
retab/resources/processors/client.py,sha256=CPzmyRBG2db1VQNk9zWwXbqfW-b8mEl_yHKUQqfMoos,20059
|
41
|
+
retab/resources/processors/automations/__init__.py,sha256=Iej-_yIxc8xAuhYmR0e2VI7j_EXVsNk1_L98OJSD82E,121
|
42
|
+
retab/resources/processors/automations/client.py,sha256=3w54F0JfC2GYDosLux8LVEjDd_RXqQ29-SyNXGa28U8,10500
|
43
|
+
retab/resources/processors/automations/endpoints.py,sha256=XgKW0D05bXSOqiGBPsPJuWwZaIMvweZ-m7tcgeGkSCo,10932
|
44
|
+
retab/resources/processors/automations/links.py,sha256=lvupie-mg9JbFKNbYKo3iL8jkhLzgRJxof-tzEJlNY4,11473
|
45
|
+
retab/resources/processors/automations/logs.py,sha256=Ft0cH6C2zbm4dLdiQ-3hqC8HU8-23bGOjUGbaauDNAU,8827
|
46
|
+
retab/resources/processors/automations/mailboxes.py,sha256=MyNysCg9JdboLE4T0fZMUnnyVUnl5evVp0DdQjSTb0g,15894
|
47
|
+
retab/resources/processors/automations/outlook.py,sha256=ps9HkAaQmQysirH_IAp_g4cGreoU-wQzfY9kqeqCGMU,14935
|
48
|
+
retab/resources/processors/automations/tests.py,sha256=Ni02vAdUqK5xt-DtWkVRJRCG3KdykvP_k4ez7vXCzsw,5992
|
49
|
+
retab/resources/secrets/__init__.py,sha256=SwofMyk96k0YSyj1d_GRxhpVx4wb4TA97TISsTjB0Kc,105
|
50
|
+
retab/resources/secrets/client.py,sha256=nXt1cgvkWqhA99WTnC1PWbWJq-EbwvoDuCQOa0GJOOU,599
|
51
|
+
retab/resources/secrets/external_api_keys.py,sha256=3TuJxjk65EPUT2XC3wBcYWaVwqzc6QGv9BoHufzxTLU,3759
|
52
|
+
retab/resources/secrets/webhook.py,sha256=2mFDNblQYBGOwgqOG5gfRJkusQX7Hjy28XZ7O7ffkl8,1805
|
53
|
+
retab/types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
54
|
+
retab/types/ai_models.py,sha256=ZQF4jXsv2HCkqJLJoedD-j8TJ5CbnWahJfLStE_kGq8,28243
|
55
|
+
retab/types/browser_canvas.py,sha256=U3yLqJcSwfturcIsNFSblRtFtnG3p-UL1YYoM9KZfdE,70
|
56
|
+
retab/types/chat.py,sha256=l32vhLtNcdmHFjG4iVC617j38x6a2oH7CNPwlvqdF8g,424
|
57
|
+
retab/types/completions.py,sha256=Gkj8K4O0YR0VemyYpNi1mL7arAc1ACCDj0b_6pldQMU,5381
|
58
|
+
retab/types/consensus.py,sha256=EsFCsyZK8NhkQ1BizFpnGN54D24hRFKc0xwt9VpH11c,1161
|
59
|
+
retab/types/evals.py,sha256=1yx1rMG92ZZI7f5nWc6C-Z1WwUsBrWg4eLS-LakvC4w,9955
|
60
|
+
retab/types/events.py,sha256=NrisdzJAaJ_kkfgdsqoiDB-Upm0LnbIGZikU_e9XXWw,2195
|
61
|
+
retab/types/extractions.py,sha256=dtZUI471GoPbHzsWWZ8WGTPPTzqQYDV-mEbzZR6bXqU,5844
|
62
|
+
retab/types/inference_settings.py,sha256=F_mBPFVY1yAwsHD11Z2ljMf3zkvviOey_JBnu8yEF84,572
|
63
|
+
retab/types/logs.py,sha256=m-CJK1sWrNQphaVzNfdpx6_2NNiHnKnmJ9wpyWJanlQ,9257
|
64
|
+
retab/types/metrics.py,sha256=0KEWUWW13s_tWjh7oUs33ip9TPwI7LZUNGE7k5qNoOo,1947
|
65
|
+
retab/types/mime.py,sha256=Fhq04yQoHhyx5wBjx7GNyJqQQJtcM_yEZt7uQxq6Br4,11038
|
66
|
+
retab/types/modalities.py,sha256=_2iGC_EEZT0Y-7PV_nHar5vqeEdsK7oy7ZJPV681nkg,1581
|
67
|
+
retab/types/pagination.py,sha256=-XrKILKX_5isTHTfShLiK3Kwp21Y6Wqy0Jci8lIFQig,109
|
68
|
+
retab/types/predictions.py,sha256=r7XM4rIMkUU10VsUkQ1wYdSkIApSGCXWkWxz7sMdBOk,1292
|
69
|
+
retab/types/standards.py,sha256=BT8U2x3wBiC-741Bxer9ys0CPb7kWhxt1Wvl2y2aoM0,1452
|
70
|
+
retab/types/automations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
71
|
+
retab/types/automations/cron.py,sha256=jDx0VzciboQw2_whvBXzgX5ZS0z2DksTgmyhXCSSGMk,3174
|
72
|
+
retab/types/automations/endpoints.py,sha256=IbylkBUBllcrtr9tifug0ptVq2vFKixuQ6e2JfW5Xfw,666
|
73
|
+
retab/types/automations/links.py,sha256=1ipBFWasY3cqds0U5AUz9Ez6T5kcgzX5r0gzZvFw8tU,901
|
74
|
+
retab/types/automations/mailboxes.py,sha256=KZh2BiQ8Q-HgNQT672Sl97LDnqW2sgjY_W3ZEj7o4Ow,2332
|
75
|
+
retab/types/automations/outlook.py,sha256=4rJ-_1Py88n44ASdWJHpb0_V5VKafP7pj67ovi6iYwU,3040
|
76
|
+
retab/types/automations/webhooks.py,sha256=Rh2iqFDb4llBV7ab_Gb-dQiRWBWGQfKdfq4C6lBKv64,562
|
77
|
+
retab/types/db/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
78
|
+
retab/types/db/annotations.py,sha256=PM-H4zXyRs48s7AAv_sl8kOQo5lThsVvBM0aKJkCpmU,1026
|
79
|
+
retab/types/db/files.py,sha256=udJKGplw6a8cF4XUTLN_QAU9-pyEWs4THHX1zyvbx0U,1261
|
80
|
+
retab/types/documents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
81
|
+
retab/types/documents/correct_orientation.py,sha256=e-ivsslI6L6Gl0YkcslXw_DH620xMGEYVp4tdeviXeM,261
|
82
|
+
retab/types/documents/create_messages.py,sha256=PjNu9Hg4Ow09WOxI7qtHMQebUM2k0_UPtw_2VrHoD6E,10289
|
83
|
+
retab/types/documents/extractions.py,sha256=zTgNUK6a5Bi4iofbN3c0s7vb0rlXUoKr_ENXYnI_ht8,19056
|
84
|
+
retab/types/evaluations/__init__.py,sha256=fRQlK6y3x3SHqaukVYd9_zH8HrUk9TpoG9dlOTuIkcY,920
|
85
|
+
retab/types/evaluations/documents.py,sha256=oy0nqTrv0Pe__5ligeNWn5MbqVDAFRSrXYbCVoLxyXw,1268
|
86
|
+
retab/types/evaluations/iterations.py,sha256=66Svg5w2FqM14Zkn_opeUXV9mRZauGE8XLr1hJNMtKE,4637
|
87
|
+
retab/types/evaluations/model.py,sha256=V4W-so4ocXlNHP8Pe5Hp2jmB_dU_cUhku1jESe1a4qc,3133
|
88
|
+
retab/types/jobs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
89
|
+
retab/types/jobs/base.py,sha256=R4UXcvgDmkgm4FB0ke5kQrSDWC95TweBLlc08ptfqt8,1695
|
90
|
+
retab/types/jobs/batch_annotation.py,sha256=Rftuu4Q6YzB4c39kWsqPGJ1QbPJrJWjWhupaKGO9kGE,281
|
91
|
+
retab/types/jobs/evaluation.py,sha256=R3Itl721bybXXnBCqU16C0gl5EAwTdcf_HZySkI_wsA,4524
|
92
|
+
retab/types/jobs/finetune.py,sha256=6O9NUy-ap_aqZ73tYx-NRRdFgKOIvk8WcItGhEUvrSQ,187
|
93
|
+
retab/types/jobs/prompt_optimization.py,sha256=dCWPwqnxZX5QgMYvHSlIEWLUvSxbs6qlbqsLHNCTRdM,1307
|
94
|
+
retab/types/jobs/webcrawl.py,sha256=C3_7mW2mmOXs6ypktDIHdjMnify90pFo70wmhrs_TP8,183
|
95
|
+
retab/types/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
96
|
+
retab/types/schemas/enhance.py,sha256=bkfkC_JCDvEolOdrp27rHbO1njEyrLJAM7qgwHGUYQk,2162
|
97
|
+
retab/types/schemas/evaluate.py,sha256=M9ZMv2FCcnSRGYBR3CUbCA88pW66EZEZC1YwoJUOei0,2206
|
98
|
+
retab/types/schemas/generate.py,sha256=pb6e6yJ2KPswmNHNkFcRhata7B698yBLnzlFVspJ9mE,1194
|
99
|
+
retab/types/schemas/layout.py,sha256=JLPwQGIWfPBoe1Y5r-MhiNDJigzZ-yKZnVGgox0uqMk,1487
|
100
|
+
retab/types/schemas/object.py,sha256=z0RaoBDNpNM-hCWTOdLycl4PH1SHZVQxIeAdt5Qztgk,25474
|
101
|
+
retab/types/schemas/templates.py,sha256=YRfgzy3hPuAfguu-qrYr9KhnAiBjLOoorqdoxyRYsXE,3466
|
102
|
+
retab/types/secrets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
103
|
+
retab/types/secrets/external_api_keys.py,sha256=-yaaOfNLxKpll3oD-0htQlW8S03lyWs9Mmk9HOdyQ3g,437
|
104
|
+
retab-0.0.38.dist-info/METADATA,sha256=sHyu3ywiTblzrlCOEgDEHxBF25Tqdqzvb6buFXU605w,14131
|
105
|
+
retab-0.0.38.dist-info/WHEEL,sha256=HiCZjzuy6Dw0hdX5R3LCFPDmFS4BWl8H-8W39XfmgX4,91
|
106
|
+
retab-0.0.38.dist-info/top_level.txt,sha256=waQR0EGdhLIQtztoE3AXg7ik5ONQ9q_bsKVpyFuJdq0,6
|
107
|
+
retab-0.0.38.dist-info/RECORD,,
|
@@ -0,0 +1 @@
|
|
1
|
+
retab
|
retab-0.0.36.dist-info/RECORD
DELETED
@@ -1,96 +0,0 @@
|
|
1
|
-
uiform/__init__.py,sha256=ojlcab4e684LddcAO8k-i2thE_3jtgZIeGvGZg_pxSE,128
|
2
|
-
uiform/_resource.py,sha256=qixWTeG8JEFU7ZyQdntZq9Z88L5clTMZOL3-fIAxk3o,583
|
3
|
-
uiform/client.py,sha256=G1yqNMPnGfns8OJLdbt1Grki-XROydQ5JQjwKlA3AE4,29927
|
4
|
-
uiform/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
5
|
-
uiform/_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
6
|
-
uiform/_utils/ai_models.py,sha256=5HQW4Jv5kUEbXw5cGR8Q9NOO11dDyIJTwxcGsu_Ti5w,3845
|
7
|
-
uiform/_utils/benchmarking copy.py,sha256=NiJ7gbgbaLzcjocHAeMTGuwktdhEu2VERFO4Adb2vQE,25406
|
8
|
-
uiform/_utils/benchmarking.py,sha256=bvDXT7kvPfquJURhOitH-X12DoYDpbKCy-DE47m-kF4,17745
|
9
|
-
uiform/_utils/chat.py,sha256=QPpPnEAkW1qAAeU2HnLXwompjEmuGNLF-393J9HKjxo,14610
|
10
|
-
uiform/_utils/display.py,sha256=zEOn9o3OB3murEGBXGZQOpHgvoQuwEACw0ASiPdajks,18875
|
11
|
-
uiform/_utils/json_schema.py,sha256=xXEKCbkgmwwPzmO9nSyAw89WE6vuqdKDnm0r5FxZneE,82263
|
12
|
-
uiform/_utils/mime.py,sha256=N8HFN07YdKp542pB1aJ-9VzF7EoOSKGY0K8TTFUWV2U,5774
|
13
|
-
uiform/_utils/responses.py,sha256=qQCKzxxCGNx8HeGTvJbhmIHpuTNAe80sB802klCaLMA,6813
|
14
|
-
uiform/_utils/stream_context_managers.py,sha256=54rVaPp0Vslh3Z1G7Dg_-uDQd4x7XpmaTQ7X4cLwEYY,2314
|
15
|
-
uiform/_utils/usage/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
16
|
-
uiform/_utils/usage/usage.py,sha256=MQdgyZCJ5eXSvnuVyq99QMXLPGROnofk8OYG3fZdl9A,13023
|
17
|
-
uiform/resources/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
18
|
-
uiform/resources/evals.py,sha256=5lzWawaLozeBeBfCp4uu5Buzz2Ppwx23eUaD-n-q5Y4,29967
|
19
|
-
uiform/resources/files.py,sha256=2EH8NuOHnB9qIW604ju956fNOZRkBkXfWNc8zApuPXo,954
|
20
|
-
uiform/resources/finetuning.py,sha256=Rx8XcqB00UIjEDZcCGp5fM2yz5TW1j36aBicrTa0uAY,2587
|
21
|
-
uiform/resources/jsonlUtils.py,sha256=ZdjOnDDblVxonoSzFTlqxU148DJjUDshss-iB8gDnxA,44530
|
22
|
-
uiform/resources/models.py,sha256=Hn2g1FFriDnpTGMV2RA0AliJy1A0DHSBweJwi9-JuYE,1213
|
23
|
-
uiform/resources/openai_example.py,sha256=yz34KvfCvHTZ-AJ9GV-N7ljTTSWBmQEQNMHY2FUbEi4,522
|
24
|
-
uiform/resources/prompt_optimization.py,sha256=BJkE7L1w0Z88sR9c1evD8ti4Zqr_xHCFSK4OJmV_M0k,3489
|
25
|
-
uiform/resources/schemas.py,sha256=nw3WfOFSegLCwskzdv12CJqgrWgMpUHZkrzE0X69O8I,16024
|
26
|
-
uiform/resources/usage.py,sha256=Rnm8FZloEq8ipf9LEMKJjCw2lgF-akSYOoNsVpt6EVw,12212
|
27
|
-
uiform/resources/consensus/__init__.py,sha256=0b3MSOFiYPwkNTrs_dBPRhwSl3kuk8BtG5QXofIUb9M,89
|
28
|
-
uiform/resources/consensus/client.py,sha256=WajRr4WtU6Dfo6UREZvMUQI5nadckGFVRTUVujL_e-w,4011
|
29
|
-
uiform/resources/consensus/completions.py,sha256=AFjRfoA8ubaD-8VLpf1EW7kogRde4l7p3v_E-CZm1xY,9076
|
30
|
-
uiform/resources/consensus/completions_stream.py,sha256=RUtfpGlxoIcyqup9Xz54OLca5cGJOBQKClg83ulWna4,11174
|
31
|
-
uiform/resources/consensus/responses.py,sha256=gqrRA2cTSRSdMWOhMYu9RJoSYEXL45Z_7KHxGQXHkPI,12006
|
32
|
-
uiform/resources/consensus/responses_stream.py,sha256=o373nrVY2vetxQXcqJoAiDqWYPr4sqsGSkMoht9hrXs,13653
|
33
|
-
uiform/resources/documents/__init__.py,sha256=OjXmngFN0RKqO4SI-mJBNzr6Ex6rMxfq0DxaqzP0RQs,89
|
34
|
-
uiform/resources/documents/client.py,sha256=kDEY1v-p7adzsK4Q0LJ2SnGf73D_D3CoO-njOfdb1Kg,11356
|
35
|
-
uiform/resources/documents/extractions.py,sha256=5_2C0BWBltkPsfgcLVDP9w55oU6gsVritIUnqt3ZDvM,20898
|
36
|
-
uiform/resources/processors/__init__.py,sha256=w1HrMdSi3xlrcEDFMQ9BA7rbUhOFWSTkTKkkR2PfFHQ,93
|
37
|
-
uiform/resources/processors/client.py,sha256=E5WDn29yF2JRfHSZ1pJY6dKIaHCoX0txVf1NBBuz2Kc,19200
|
38
|
-
uiform/resources/processors/automations/__init__.py,sha256=Iej-_yIxc8xAuhYmR0e2VI7j_EXVsNk1_L98OJSD82E,121
|
39
|
-
uiform/resources/processors/automations/client.py,sha256=hFsUilvXW7PDZZtBT1l5l0Ch2XxABpIaN5sVYE3gR6U,2676
|
40
|
-
uiform/resources/processors/automations/endpoints.py,sha256=6-cO0ZFfOF9STUsURLuSZhoTYkZSaTxtBvvY46fg9FQ,13070
|
41
|
-
uiform/resources/processors/automations/links.py,sha256=3YvDXSPpf8Usiu60tiaDgSrE_M9PCEReQgdfBJyJMTw,14379
|
42
|
-
uiform/resources/processors/automations/logs.py,sha256=mYfNjHN4on7mql0jsVO0NWsFIit_O6MIcuRWC1-WC0U,8119
|
43
|
-
uiform/resources/processors/automations/mailboxes.py,sha256=vBSglhT5OdA9VGt5bP78mEgYo01LjFX2UMPYts6FI-w,17524
|
44
|
-
uiform/resources/processors/automations/outlook.py,sha256=KiI9WqOhm8opeGI-YJsZAGAHhPJJjsua-25xktQ7NLw,17426
|
45
|
-
uiform/resources/processors/automations/tests.py,sha256=8q2mr5COxotKiNdiwV8dF5OQeRr1xOM7EUxbVR6FLlQ,6235
|
46
|
-
uiform/resources/secrets/__init__.py,sha256=SwofMyk96k0YSyj1d_GRxhpVx4wb4TA97TISsTjB0Kc,105
|
47
|
-
uiform/resources/secrets/client.py,sha256=nXt1cgvkWqhA99WTnC1PWbWJq-EbwvoDuCQOa0GJOOU,599
|
48
|
-
uiform/resources/secrets/external_api_keys.py,sha256=JaB1AuX72vhv7horDXHZq2Ibd9srsGeVZu8pSL09754,3837
|
49
|
-
uiform/resources/secrets/webhook.py,sha256=dY3yM7EXeuT37zuXnF8hz-fP8It-PU9m0aQ_epBatr0,1670
|
50
|
-
uiform/types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
51
|
-
uiform/types/ai_models.py,sha256=kk3XxnqiIFhn0TLTB7XNhj968mW9SAn93u9ccK5icI4,27940
|
52
|
-
uiform/types/chat.py,sha256=am7KJI_I8d3vKVyk3hV3WrJCOc08ThL3jauS88ZYeTY,435
|
53
|
-
uiform/types/completions.py,sha256=ApeH75tnxre54pMsTW_qQNij5c4N-ihXal70wRUNeqY,5396
|
54
|
-
uiform/types/consensus.py,sha256=jcNwSbg_uzGqvHWbWFORoLAc-8hX2F8HIdySCpzFydM,390
|
55
|
-
uiform/types/evals.py,sha256=7QHuyxebms-9Iu_8iHd9XjNIeZRELWQ3NVRsDC7Gc1c,9728
|
56
|
-
uiform/types/events.py,sha256=szkvlKzmw6hcwqpz0DOKqweHd2JPiGURKSjaB5FCUbA,2145
|
57
|
-
uiform/types/extractions.py,sha256=ZrZHaw_sYRzUJ0HhiRrZ6Rv9kslOP9fKhC3RXbwOVu8,4677
|
58
|
-
uiform/types/logs.py,sha256=gV-Q9_L8fllYp3DeweZfOp4UGvwODhxnW7zvQpzP158,9258
|
59
|
-
uiform/types/mime.py,sha256=9Od0MKWYrW7DgG817ohtREfzh9ReXf01EovGaO8W_2g,10929
|
60
|
-
uiform/types/modalities.py,sha256=545ITBBA62t-qIaVKRQE3zxBv401jfn5I19gOtKIFP0,1581
|
61
|
-
uiform/types/pagination.py,sha256=-XrKILKX_5isTHTfShLiK3Kwp21Y6Wqy0Jci8lIFQig,109
|
62
|
-
uiform/types/standards.py,sha256=nBrMatmdINCezS3YwtK84Cg2RaHkoc18T43Z-YayJLg,1173
|
63
|
-
uiform/types/automations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
64
|
-
uiform/types/automations/cron.py,sha256=ZIdRAFXu7Fjdz-G59-2AqwcWH0pc5HA-uygCXOjal-I,3035
|
65
|
-
uiform/types/automations/endpoints.py,sha256=jO5awlqQvC1_AsYRuFLrnzwK3nSOQl-sZfrq8hMztlA,643
|
66
|
-
uiform/types/automations/links.py,sha256=mQBanQ32fWs6R_XvlbXZO3yHEElrOJCOjLKv8DBFIjc,856
|
67
|
-
uiform/types/automations/mailboxes.py,sha256=pZXnUtXY1GlIH57WbMa1zr3fAhvXC3cK0Zic9V_GWO8,2387
|
68
|
-
uiform/types/automations/outlook.py,sha256=a8aDqgs-7l2OfLj1hmNb0NdHjVEZgUoJTUELwmvL61w,3060
|
69
|
-
uiform/types/automations/webhooks.py,sha256=I_zaART2V_XrC3bzHO7wB0UlxNGLiblTltfue6BCgb0,563
|
70
|
-
uiform/types/db/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
71
|
-
uiform/types/db/annotations.py,sha256=Npy3IHwrCPl4NCxfNtiI1X3cKkLYA7BvkncBPuBLzxA,1034
|
72
|
-
uiform/types/db/files.py,sha256=bey3MeaoIuc_FklhQ8GBiluQV8IvGjK52BwmdfYqZhY,1191
|
73
|
-
uiform/types/documents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
74
|
-
uiform/types/documents/correct_orientation.py,sha256=e-ivsslI6L6Gl0YkcslXw_DH620xMGEYVp4tdeviXeM,261
|
75
|
-
uiform/types/documents/create_messages.py,sha256=dazBa-H4OQQcNsuu0BuUlXb5dIaBYcR0bzyeLZQAnJ8,10439
|
76
|
-
uiform/types/documents/extractions.py,sha256=wUsej18gG8ssLln6o_Akcq2D10x7AGBC5dPsgAyRyWE,16339
|
77
|
-
uiform/types/jobs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
78
|
-
uiform/types/jobs/base.py,sha256=48cXlGe7ewmME83a2GohdPn0F0PU3uJSZd0H9vFR1YY,5112
|
79
|
-
uiform/types/jobs/batch_annotation.py,sha256=wnW9alidnEjnmnxrcva2v8W9l9V5ld6PgRi5mBlSaY4,645
|
80
|
-
uiform/types/jobs/evaluation.py,sha256=4nR_jmqphRo7dCkWt99TKyOQlKugjkF01cy5_Gtk27E,4630
|
81
|
-
uiform/types/jobs/finetune.py,sha256=6O9NUy-ap_aqZ73tYx-NRRdFgKOIvk8WcItGhEUvrSQ,187
|
82
|
-
uiform/types/jobs/prompt_optimization.py,sha256=dCWPwqnxZX5QgMYvHSlIEWLUvSxbs6qlbqsLHNCTRdM,1307
|
83
|
-
uiform/types/jobs/webcrawl.py,sha256=C3_7mW2mmOXs6ypktDIHdjMnify90pFo70wmhrs_TP8,183
|
84
|
-
uiform/types/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
85
|
-
uiform/types/schemas/enhance.py,sha256=Dt37aB6YQWvNeDEh39DmENknZWxzI84RF325enpVu6c,2139
|
86
|
-
uiform/types/schemas/evaluate.py,sha256=XQKRrI4yy_SKpaccQrKzElUhFXVel2VEVOF-4ApyDjc,2182
|
87
|
-
uiform/types/schemas/generate.py,sha256=Q1Jm-1pUCiBhJYrmdSzNtOgiy81DdfoKmAJaiZm2yuE,1162
|
88
|
-
uiform/types/schemas/layout.py,sha256=JHBhL5s9sVGG7ZOUiQucgnA4zE0uW4UyLDve3K3bthw,1492
|
89
|
-
uiform/types/schemas/object.py,sha256=T25SvBfM6l6ekJz66yV8ISqJQjJMYGw1QW19cceEV90,25496
|
90
|
-
uiform/types/schemas/templates.py,sha256=xvfweRVGvW1Y9D42rJykqRZ_AXi_CJE_QnRusiDxgW4,3468
|
91
|
-
uiform/types/secrets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
92
|
-
uiform/types/secrets/external_api_keys.py,sha256=TYyyHAs7hl8ktQSEwcjtiUugZ0q-SZIXxYShM8NfjjA,459
|
93
|
-
retab-0.0.36.dist-info/METADATA,sha256=JqRHFNuclGDJudnfTzlOwaV4aZBYv6Iu3358ooWRxO4,14183
|
94
|
-
retab-0.0.36.dist-info/WHEEL,sha256=HiCZjzuy6Dw0hdX5R3LCFPDmFS4BWl8H-8W39XfmgX4,91
|
95
|
-
retab-0.0.36.dist-info/top_level.txt,sha256=2_46xeTCMIhYaZjPkGg3BgX3idio6qXgF4Xt0LxlSgg,7
|
96
|
-
retab-0.0.36.dist-info/RECORD,,
|
@@ -1 +0,0 @@
|
|
1
|
-
uiform
|
uiform/__init__.py
DELETED