retab 0.0.40__py3-none-any.whl → 0.0.42__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/client.py +5 -5
- retab/resources/consensus/completions.py +1 -1
- retab/resources/consensus/completions_stream.py +5 -5
- retab/resources/consensus/responses.py +1 -1
- retab/resources/consensus/responses_stream.py +2 -2
- retab/resources/documents/client.py +12 -11
- retab/resources/documents/extractions.py +4 -4
- retab/resources/evals.py +1 -1
- retab/resources/evaluations/documents.py +1 -1
- retab/resources/jsonlUtils.py +4 -4
- retab/resources/processors/automations/endpoints.py +9 -5
- retab/resources/processors/automations/links.py +2 -2
- retab/resources/processors/automations/logs.py +2 -2
- retab/resources/processors/automations/mailboxes.py +43 -32
- retab/resources/processors/automations/outlook.py +25 -7
- retab/resources/processors/automations/tests.py +8 -2
- retab/resources/processors/client.py +25 -16
- retab/resources/prompt_optimization.py +1 -1
- retab/resources/schemas.py +3 -3
- retab/types/automations/mailboxes.py +1 -1
- retab/types/completions.py +1 -1
- retab/types/documents/create_messages.py +4 -4
- retab/types/documents/extractions.py +3 -3
- retab/types/documents/parse.py +3 -1
- retab/types/evals.py +2 -2
- retab/types/evaluations/iterations.py +2 -2
- retab/types/evaluations/model.py +2 -2
- retab/types/extractions.py +34 -9
- retab/types/jobs/prompt_optimization.py +1 -1
- retab/types/logs.py +3 -3
- retab/types/schemas/object.py +4 -4
- retab/types/schemas/templates.py +1 -1
- retab/utils/__init__.py +0 -0
- retab/utils/_model_cards/anthropic.yaml +59 -0
- retab/utils/_model_cards/auto.yaml +43 -0
- retab/utils/_model_cards/gemini.yaml +117 -0
- retab/utils/_model_cards/openai.yaml +301 -0
- retab/utils/_model_cards/xai.yaml +28 -0
- retab/utils/ai_models.py +138 -0
- retab/utils/benchmarking.py +484 -0
- retab/utils/chat.py +327 -0
- retab/utils/display.py +440 -0
- retab/utils/json_schema.py +2156 -0
- retab/utils/mime.py +165 -0
- retab/utils/responses.py +169 -0
- retab/utils/stream_context_managers.py +52 -0
- retab/utils/usage/__init__.py +0 -0
- retab/utils/usage/usage.py +301 -0
- retab-0.0.42.dist-info/METADATA +119 -0
- {retab-0.0.40.dist-info → retab-0.0.42.dist-info}/RECORD +52 -36
- retab-0.0.40.dist-info/METADATA +0 -418
- {retab-0.0.40.dist-info → retab-0.0.42.dist-info}/WHEEL +0 -0
- {retab-0.0.40.dist-info → retab-0.0.42.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,119 @@
|
|
1
|
+
Metadata-Version: 2.1
|
2
|
+
Name: retab
|
3
|
+
Version: 0.0.42
|
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
|
+
Classifier: Programming Language :: Python :: 3
|
10
|
+
Classifier: License :: OSI Approved :: MIT License
|
11
|
+
Classifier: Operating System :: POSIX :: Linux
|
12
|
+
Classifier: Operating System :: MacOS
|
13
|
+
Classifier: Intended Audience :: Science/Research
|
14
|
+
Requires-Python: >=3.6
|
15
|
+
Description-Content-Type: text/markdown
|
16
|
+
Requires-Dist: Pillow
|
17
|
+
Requires-Dist: httpx
|
18
|
+
Requires-Dist: pydantic
|
19
|
+
Requires-Dist: pydantic-core
|
20
|
+
Requires-Dist: requests
|
21
|
+
Requires-Dist: tqdm
|
22
|
+
Requires-Dist: types-tqdm
|
23
|
+
Requires-Dist: backoff
|
24
|
+
Requires-Dist: termplotlib
|
25
|
+
Requires-Dist: Levenshtein
|
26
|
+
Requires-Dist: pandas
|
27
|
+
Requires-Dist: numpy
|
28
|
+
Requires-Dist: motor
|
29
|
+
Requires-Dist: rich
|
30
|
+
Requires-Dist: puremagic
|
31
|
+
Requires-Dist: pycountry
|
32
|
+
Requires-Dist: phonenumbers
|
33
|
+
Requires-Dist: email-validator
|
34
|
+
Requires-Dist: python-stdnum
|
35
|
+
Requires-Dist: nanoid
|
36
|
+
Requires-Dist: openai
|
37
|
+
Requires-Dist: google-genai
|
38
|
+
Requires-Dist: google-generativeai
|
39
|
+
Requires-Dist: anthropic
|
40
|
+
Requires-Dist: tiktoken
|
41
|
+
Requires-Dist: truststore
|
42
|
+
Requires-Dist: ruff
|
43
|
+
|
44
|
+
# Retab
|
45
|
+
|
46
|
+
<div align="center" style="margin-bottom: 1em;">
|
47
|
+
|
48
|
+
<img src="https://raw.githubusercontent.com/Retab-dev/retab/refs/heads/main/assets/retab-logo.png" alt="Retab Logo" width="150">
|
49
|
+
|
50
|
+
|
51
|
+
*The AI Automation Platform*
|
52
|
+
|
53
|
+
Made with love by the team at [Retab](https://retab.com) 🤍.
|
54
|
+
|
55
|
+
[Our Website](https://retab.com) | [Documentation](https://docs.retab.com/get-started/introduction) | [Discord](https://discord.com/invite/vc5tWRPqag) | [Twitter](https://x.com/retabdev)
|
56
|
+
|
57
|
+
|
58
|
+
</div>
|
59
|
+
|
60
|
+
---
|
61
|
+
|
62
|
+
### What is Retab?
|
63
|
+
|
64
|
+
Retab solves all the major challenges in document processing with LLMs:
|
65
|
+
|
66
|
+
1. **Universal Document Preprocessing**: Convert any file type (PDFs, Excel, emails, etc.) into LLM-ready format without writing custom parsers
|
67
|
+
2. **Structured, Schema-driven Extraction**: Get consistent, reliable outputs using schema-based prompt engineering
|
68
|
+
3. **Processors**: Publish a live, stable, shareable document processor.
|
69
|
+
4. **Automations**: Create document processing workflows that can be triggered by events (mailbox, upload link, endpoint, outlook plugin).
|
70
|
+
5. **Evaluations**: Evaluate the performance of models against annotated datasets
|
71
|
+
6. **Optimizations**: Identify the most used processors and help you finetune models to reduce costs and improve performance
|
72
|
+
|
73
|
+
We are offering you all the software-defined primitives to build your own document processing solutions. We see it as **Stripe** for document processing.
|
74
|
+
|
75
|
+
Our goal is to make the process of analyzing documents and unstructured data as **easy** and **transparent** as possible.
|
76
|
+
|
77
|
+
**A new, lighter paradigm**
|
78
|
+
Large Language Models collapse entire layers of legacy OCR pipelines into a single, elegant abstraction. When a model can read, reason, and structure text natively, we no longer need brittle heuristics, handcrafted parsers, or heavyweight ETL jobs. Instead, we can expose a small, principled API: "give me the document, tell me the schema, and get back structured truth." Complexity evaporates, reliability rises, speed follows, and costs fall—because every component you remove is one that can no longer break. LLM‑first design lets us focus less on plumbing and more on the questions we actually want answered.
|
79
|
+
|
80
|
+
Many people haven't yet realized how powerful LLMs have become at document processing tasks - we're here to help **unlock these capabilities**.
|
81
|
+
|
82
|
+
---
|
83
|
+
|
84
|
+
## Go further
|
85
|
+
|
86
|
+
* [Quickstart](/get-started/quickstart)
|
87
|
+
* [API Reference](/api-reference/introduction)
|
88
|
+
|
89
|
+
---
|
90
|
+
|
91
|
+
## Code examples
|
92
|
+
|
93
|
+
## You can check our Github repository to see code examples: [python examples](https://github.com/Retab-dev/retab/tree/main/examples) and [jupyter notebooks](https://github.com/Retab-dev/retab-nodejs/tree/main/notebooks).
|
94
|
+
|
95
|
+
## Community
|
96
|
+
|
97
|
+
Let's create the future of document processing together!
|
98
|
+
|
99
|
+
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/retabdev) at us.
|
100
|
+
|
101
|
+
We can't wait to see how you'll use Retab.
|
102
|
+
|
103
|
+
* [Discord](https://discord.com/invite/vc5tWRPqag)
|
104
|
+
* [Twitter](https://x.com/retabdev)
|
105
|
+
|
106
|
+
---
|
107
|
+
|
108
|
+
## Roadmap
|
109
|
+
|
110
|
+
We share our roadmap publicly on [Github](https://github.com/Retab-dev/retab)
|
111
|
+
|
112
|
+
Among the features we're working on:
|
113
|
+
|
114
|
+
* [ ] Node.js SDK
|
115
|
+
* [ ] Low-level speed optimizations for Evals Frontend
|
116
|
+
* [ ] Schema optimization autopilot
|
117
|
+
* [ ] Sources API
|
118
|
+
* [ ] Parse API for RAG
|
119
|
+
|
@@ -1,6 +1,6 @@
|
|
1
1
|
retab/__init__.py,sha256=sRurau6z8m4pn7VFKdHr9FyNA9Ffhvg064i2NF0RmPc,124
|
2
2
|
retab/_resource.py,sha256=JfAU4UTa05ugWfbrpO7fsVr_pFewht99NkoIfK6kBQM,577
|
3
|
-
retab/client.py,sha256=
|
3
|
+
retab/client.py,sha256=gbBSkOWbXLoYXwRGXkhubBeIxAecVHvW_3b9ELNSE2Q,29768
|
4
4
|
retab/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
5
5
|
retab/_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
6
6
|
retab/_utils/ai_models.py,sha256=u0SDwSd3SNhJaFm6bPepiGIh4BbocGYDKk4qu3kVIxc,4821
|
@@ -19,38 +19,38 @@ retab/_utils/_model_cards/xai.yaml,sha256=OdVV33_WODc4UBZhDezcUq_5mHQK5zeOT49EjJ
|
|
19
19
|
retab/_utils/usage/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
20
20
|
retab/_utils/usage/usage.py,sha256=g2_Co3gaB1Akgbszd-I7ddXMM-EyI7Gz9SI5SdtlBII,12949
|
21
21
|
retab/resources/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
22
|
-
retab/resources/evals.py,sha256=
|
22
|
+
retab/resources/evals.py,sha256=vOMyCJ0dVy6YZUv4NtkujZBZCByvr0PmSpV6UGnorHw,29927
|
23
23
|
retab/resources/files.py,sha256=-_GejfQjKEk10HHb5npmLOA9cUnVHic2ZQntE8tw4TQ,954
|
24
24
|
retab/resources/finetuning.py,sha256=Rx8XcqB00UIjEDZcCGp5fM2yz5TW1j36aBicrTa0uAY,2587
|
25
|
-
retab/resources/jsonlUtils.py,sha256=
|
25
|
+
retab/resources/jsonlUtils.py,sha256=gv4h3gAxks84r1l09vFVaUkqSGzSu1D0bw-J6lLRf5U,45149
|
26
26
|
retab/resources/models.py,sha256=4WidFBnTGZEA65DSn2pLP2SRnCVXkMTw7o_m8xVCFC4,2469
|
27
27
|
retab/resources/openai_example.py,sha256=yz34KvfCvHTZ-AJ9GV-N7ljTTSWBmQEQNMHY2FUbEi4,522
|
28
|
-
retab/resources/prompt_optimization.py,sha256=
|
29
|
-
retab/resources/schemas.py,sha256=
|
28
|
+
retab/resources/prompt_optimization.py,sha256=MrzRehmFQK4Ltyr1jhLhx3yO22UxtDpmg9B3CDjirFc,3488
|
29
|
+
retab/resources/schemas.py,sha256=zoxhpCO0jIUx0f7VvS6QAbGlHmxtyBVvmyYoi5aFRQg,16054
|
30
30
|
retab/resources/usage.py,sha256=OmJMPwmP1TBuZmMKrjaGWnl2mQ9VbQDKSAm6l7Tsaf4,13601
|
31
31
|
retab/resources/consensus/__init__.py,sha256=0b3MSOFiYPwkNTrs_dBPRhwSl3kuk8BtG5QXofIUb9M,89
|
32
32
|
retab/resources/consensus/client.py,sha256=D2TeqqCp0ZvqvQLAe1i3nW8nnf-Ms6zNEXRA9C26TQI,3705
|
33
|
-
retab/resources/consensus/completions.py,sha256=
|
34
|
-
retab/resources/consensus/completions_stream.py,sha256=
|
35
|
-
retab/resources/consensus/responses.py,sha256=
|
36
|
-
retab/resources/consensus/responses_stream.py,sha256=
|
33
|
+
retab/resources/consensus/completions.py,sha256=6vTnqADY6GueV28smYRDQ2yooj94G2WHMlQLyKOXqtw,8372
|
34
|
+
retab/resources/consensus/completions_stream.py,sha256=DlU9od01F1Fmh9WjTLhq4KsntfqXy5jGGwrYauS43Ec,10893
|
35
|
+
retab/resources/consensus/responses.py,sha256=av__D_3hs8GlV7RnBnrLmtjq6_DzbWwfSP8lzjiHlw8,9935
|
36
|
+
retab/resources/consensus/responses_stream.py,sha256=OopJ9aoO7HctfhLnXzJx8-dkk-4jK_juOw6jUAkzwVM,11671
|
37
37
|
retab/resources/documents/__init__.py,sha256=OjXmngFN0RKqO4SI-mJBNzr6Ex6rMxfq0DxaqzP0RQs,89
|
38
|
-
retab/resources/documents/client.py,sha256=
|
39
|
-
retab/resources/documents/extractions.py,sha256=
|
38
|
+
retab/resources/documents/client.py,sha256=fTaNecDke_fGEcqQIcTJcGZDKhSMWgZl2bxc6W48oOg,25295
|
39
|
+
retab/resources/documents/extractions.py,sha256=jMBgirKohgMTsdwX-LQldmvgHVHt-Q2N5810K1tzk9Q,25623
|
40
40
|
retab/resources/evaluations/__init__.py,sha256=3npbUDbxYn3ihnUKV7PRYNBYqL7MZ9AwhQHr7LaIESg,97
|
41
41
|
retab/resources/evaluations/client.py,sha256=SdI-m_8V0BApparlHO1mYFwvjAGWsHBKD_-Z3ZLcdq0,10658
|
42
|
-
retab/resources/evaluations/documents.py,sha256=
|
42
|
+
retab/resources/evaluations/documents.py,sha256=G58AYRpmlGRspwuunwhWB_cqN_Zn5Ukp_f2NAMyxMi4,9489
|
43
43
|
retab/resources/evaluations/iterations.py,sha256=v9kD1tJ-3I0A02zVIwSInKHwPzGhmub7fc5FEBJkT74,17664
|
44
44
|
retab/resources/processors/__init__.py,sha256=w1HrMdSi3xlrcEDFMQ9BA7rbUhOFWSTkTKkkR2PfFHQ,93
|
45
|
-
retab/resources/processors/client.py,sha256=
|
45
|
+
retab/resources/processors/client.py,sha256=EMu7VlniDePhPvlCryGwXWaG2wketLA6vz8JUFs8U0A,20710
|
46
46
|
retab/resources/processors/automations/__init__.py,sha256=Iej-_yIxc8xAuhYmR0e2VI7j_EXVsNk1_L98OJSD82E,121
|
47
47
|
retab/resources/processors/automations/client.py,sha256=3w54F0JfC2GYDosLux8LVEjDd_RXqQ29-SyNXGa28U8,10500
|
48
|
-
retab/resources/processors/automations/endpoints.py,sha256=
|
49
|
-
retab/resources/processors/automations/links.py,sha256=
|
50
|
-
retab/resources/processors/automations/logs.py,sha256=
|
51
|
-
retab/resources/processors/automations/mailboxes.py,sha256=
|
52
|
-
retab/resources/processors/automations/outlook.py,sha256=
|
53
|
-
retab/resources/processors/automations/tests.py,sha256=
|
48
|
+
retab/resources/processors/automations/endpoints.py,sha256=9ur3OR1b-gKaM4JqiQVaWUS0DmkfNvYgbi_TkbyoXQ4,11046
|
49
|
+
retab/resources/processors/automations/links.py,sha256=LXOnDlaei07MRIc5KfxhCS5QikE8g0uptuYFeimXFPg,11449
|
50
|
+
retab/resources/processors/automations/logs.py,sha256=seBjzv4Tm8fMJcApzZcyR5yXG5YLP0yW5BH5ql7JMcg,8827
|
51
|
+
retab/resources/processors/automations/mailboxes.py,sha256=7TQcUDM9iX_E_Yg_r2l59Jxf-1p30bx4jTMY-rgD5MQ,16155
|
52
|
+
retab/resources/processors/automations/outlook.py,sha256=ANX0MftT4VQt8ehZkhN1xpaccph9pDNXYLbO2WW3wsw,15189
|
53
|
+
retab/resources/processors/automations/tests.py,sha256=nbO6qIkQnpr629ZkCchbfCJOm7KyjDOaLsxXxB3i0cg,6219
|
54
54
|
retab/resources/secrets/__init__.py,sha256=SwofMyk96k0YSyj1d_GRxhpVx4wb4TA97TISsTjB0Kc,105
|
55
55
|
retab/resources/secrets/client.py,sha256=nXt1cgvkWqhA99WTnC1PWbWJq-EbwvoDuCQOa0GJOOU,599
|
56
56
|
retab/resources/secrets/external_api_keys.py,sha256=3TuJxjk65EPUT2XC3wBcYWaVwqzc6QGv9BoHufzxTLU,3759
|
@@ -59,13 +59,13 @@ retab/types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
59
59
|
retab/types/ai_models.py,sha256=DFLW6vi45heZGKkMJrAKs6j9K97Sn2N5IEE4hMoQAJs,4896
|
60
60
|
retab/types/browser_canvas.py,sha256=U3yLqJcSwfturcIsNFSblRtFtnG3p-UL1YYoM9KZfdE,70
|
61
61
|
retab/types/chat.py,sha256=l32vhLtNcdmHFjG4iVC617j38x6a2oH7CNPwlvqdF8g,424
|
62
|
-
retab/types/completions.py,sha256=
|
62
|
+
retab/types/completions.py,sha256=ZQU29bm-FhdOzky4_Dp2N--fedR82C3QfCRZCJCQ-P8,5381
|
63
63
|
retab/types/consensus.py,sha256=EsFCsyZK8NhkQ1BizFpnGN54D24hRFKc0xwt9VpH11c,1161
|
64
|
-
retab/types/evals.py,sha256=
|
64
|
+
retab/types/evals.py,sha256=JNdWu4hplfSEuSzu9l27ZVr2RO2opUKEruIpKXZosmU,9953
|
65
65
|
retab/types/events.py,sha256=NrisdzJAaJ_kkfgdsqoiDB-Upm0LnbIGZikU_e9XXWw,2195
|
66
|
-
retab/types/extractions.py,sha256=
|
66
|
+
retab/types/extractions.py,sha256=Pvzu2Bu62X6P055xDj6Du8kf_ilJBiyeYl_uN5GfGVw,6038
|
67
67
|
retab/types/inference_settings.py,sha256=F_mBPFVY1yAwsHD11Z2ljMf3zkvviOey_JBnu8yEF84,572
|
68
|
-
retab/types/logs.py,sha256=
|
68
|
+
retab/types/logs.py,sha256=uWgul1YpbczzWozuVnBWuVMm6NAZElSE1rXs_O8A98s,9260
|
69
69
|
retab/types/metrics.py,sha256=0KEWUWW13s_tWjh7oUs33ip9TPwI7LZUNGE7k5qNoOo,1947
|
70
70
|
retab/types/mime.py,sha256=Fhq04yQoHhyx5wBjx7GNyJqQQJtcM_yEZt7uQxq6Br4,11038
|
71
71
|
retab/types/modalities.py,sha256=_2iGC_EEZT0Y-7PV_nHar5vqeEdsK7oy7ZJPV681nkg,1581
|
@@ -76,7 +76,7 @@ retab/types/automations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG
|
|
76
76
|
retab/types/automations/cron.py,sha256=jDx0VzciboQw2_whvBXzgX5ZS0z2DksTgmyhXCSSGMk,3174
|
77
77
|
retab/types/automations/endpoints.py,sha256=IbylkBUBllcrtr9tifug0ptVq2vFKixuQ6e2JfW5Xfw,666
|
78
78
|
retab/types/automations/links.py,sha256=1ipBFWasY3cqds0U5AUz9Ez6T5kcgzX5r0gzZvFw8tU,901
|
79
|
-
retab/types/automations/mailboxes.py,sha256=
|
79
|
+
retab/types/automations/mailboxes.py,sha256=3LDmEZO1RtsNq-5Q7jVjfTo7o92rYK-UH56Ja-dKJ9Q,2332
|
80
80
|
retab/types/automations/outlook.py,sha256=4rJ-_1Py88n44ASdWJHpb0_V5VKafP7pj67ovi6iYwU,3040
|
81
81
|
retab/types/automations/webhooks.py,sha256=_IY33_RL8ULYmKW7vYbCXLCEmsrKzM9SmwdPyv6LfwM,571
|
82
82
|
retab/types/db/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -84,30 +84,46 @@ retab/types/db/annotations.py,sha256=PM-H4zXyRs48s7AAv_sl8kOQo5lThsVvBM0aKJkCpmU
|
|
84
84
|
retab/types/db/files.py,sha256=udJKGplw6a8cF4XUTLN_QAU9-pyEWs4THHX1zyvbx0U,1261
|
85
85
|
retab/types/documents/__init__.py,sha256=RaD6PnvRJw7QEVTh_PYNX6gckpLcxUJH7FKaopRKJzY,114
|
86
86
|
retab/types/documents/correct_orientation.py,sha256=e-ivsslI6L6Gl0YkcslXw_DH620xMGEYVp4tdeviXeM,261
|
87
|
-
retab/types/documents/create_messages.py,sha256=
|
88
|
-
retab/types/documents/extractions.py,sha256=
|
89
|
-
retab/types/documents/parse.py,sha256
|
87
|
+
retab/types/documents/create_messages.py,sha256=S2nJ4GHZ3hKTZ4kNs5XrCZeaokOsy9LqRC-FVHkFvSY,10285
|
88
|
+
retab/types/documents/extractions.py,sha256=z1XlQLeCGcUAipVB8WGbbUjaBor1bN9BxQzeBaDMj3E,19096
|
89
|
+
retab/types/documents/parse.py,sha256=-gCzloJhZraR_Pi9Je0SL8aP52n0GfO9qH838usPA3w,1418
|
90
90
|
retab/types/evaluations/__init__.py,sha256=fRQlK6y3x3SHqaukVYd9_zH8HrUk9TpoG9dlOTuIkcY,920
|
91
91
|
retab/types/evaluations/documents.py,sha256=oy0nqTrv0Pe__5ligeNWn5MbqVDAFRSrXYbCVoLxyXw,1268
|
92
|
-
retab/types/evaluations/iterations.py,sha256=
|
93
|
-
retab/types/evaluations/model.py,sha256=
|
92
|
+
retab/types/evaluations/iterations.py,sha256=lVHcqmIT0AtJyn7dc_Mw-WbeA0gfTUG1KoifCOFPIkg,4635
|
93
|
+
retab/types/evaluations/model.py,sha256=_ArYgSP51nh__-0MxzGxWUl8bvISX9Dm6juuybKb6yA,3131
|
94
94
|
retab/types/jobs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
95
95
|
retab/types/jobs/base.py,sha256=R4UXcvgDmkgm4FB0ke5kQrSDWC95TweBLlc08ptfqt8,1695
|
96
96
|
retab/types/jobs/batch_annotation.py,sha256=Rftuu4Q6YzB4c39kWsqPGJ1QbPJrJWjWhupaKGO9kGE,281
|
97
97
|
retab/types/jobs/evaluation.py,sha256=R3Itl721bybXXnBCqU16C0gl5EAwTdcf_HZySkI_wsA,4524
|
98
98
|
retab/types/jobs/finetune.py,sha256=6O9NUy-ap_aqZ73tYx-NRRdFgKOIvk8WcItGhEUvrSQ,187
|
99
|
-
retab/types/jobs/prompt_optimization.py,sha256=
|
99
|
+
retab/types/jobs/prompt_optimization.py,sha256=P7JI0zKFExCN4ws8kpFrCHBFbrJ4m4-zGJnNVXWa-ic,1306
|
100
100
|
retab/types/jobs/webcrawl.py,sha256=C3_7mW2mmOXs6ypktDIHdjMnify90pFo70wmhrs_TP8,183
|
101
101
|
retab/types/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
102
102
|
retab/types/schemas/enhance.py,sha256=bkfkC_JCDvEolOdrp27rHbO1njEyrLJAM7qgwHGUYQk,2162
|
103
103
|
retab/types/schemas/evaluate.py,sha256=M9ZMv2FCcnSRGYBR3CUbCA88pW66EZEZC1YwoJUOei0,2206
|
104
104
|
retab/types/schemas/generate.py,sha256=pb6e6yJ2KPswmNHNkFcRhata7B698yBLnzlFVspJ9mE,1194
|
105
105
|
retab/types/schemas/layout.py,sha256=JLPwQGIWfPBoe1Y5r-MhiNDJigzZ-yKZnVGgox0uqMk,1487
|
106
|
-
retab/types/schemas/object.py,sha256=
|
107
|
-
retab/types/schemas/templates.py,sha256=
|
106
|
+
retab/types/schemas/object.py,sha256=JLjeNfV9swAkTgmZo9DtQRNhUQnJmWK3yGeL3BE41Yo,25470
|
107
|
+
retab/types/schemas/templates.py,sha256=Of4gYULkxULhMOv1X1zXe9pd7o3b21vDUF4BYSouAsc,3465
|
108
108
|
retab/types/secrets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
109
109
|
retab/types/secrets/external_api_keys.py,sha256=-yaaOfNLxKpll3oD-0htQlW8S03lyWs9Mmk9HOdyQ3g,437
|
110
|
-
retab
|
111
|
-
retab
|
112
|
-
retab
|
113
|
-
retab
|
110
|
+
retab/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
111
|
+
retab/utils/ai_models.py,sha256=u0SDwSd3SNhJaFm6bPepiGIh4BbocGYDKk4qu3kVIxc,4821
|
112
|
+
retab/utils/benchmarking.py,sha256=ZSuVcRkYr4gD90yezAv6TuKaFdj2ulc5d5x3lXLbQss,17849
|
113
|
+
retab/utils/chat.py,sha256=ZHt6oEX2lZl8O0tIj-rHnqgmDbHxMYEWPkx0fArvojo,14352
|
114
|
+
retab/utils/display.py,sha256=ZFPbiBnwEWGR-suS8e9Xilz9OqyYRDwsKYWfbFSJPJM,18868
|
115
|
+
retab/utils/json_schema.py,sha256=vbIg4NqREBq_eNbYdBTGw5ykhUmKkSiVRAahAOrWEZg,82237
|
116
|
+
retab/utils/mime.py,sha256=S6pH_CmDc7fnb14PIoK3XALwb_Quha34a112joyUNmY,5723
|
117
|
+
retab/utils/responses.py,sha256=MqY6G9OCLMJhCZcT5uhky5xv_IRqI43aXRjvBU-L58E,7023
|
118
|
+
retab/utils/stream_context_managers.py,sha256=gI1gVQSj3nWz6Mvjz7Ix5AiY0g6vSL-c2tPfuP04izo,2314
|
119
|
+
retab/utils/_model_cards/anthropic.yaml,sha256=faGKfsNNvi3Wgu2sFseV5KVOseJClHBPPdBVv6nWyXo,1413
|
120
|
+
retab/utils/_model_cards/auto.yaml,sha256=3nMlz9K2l5dNSTk-7zi2Id5oohM2L3E2_di2J6UpfdM,1048
|
121
|
+
retab/utils/_model_cards/gemini.yaml,sha256=irV9c0WumgEOIYbAkR2jsisfK_4dY1Tzja2D1j1euF0,2870
|
122
|
+
retab/utils/_model_cards/openai.yaml,sha256=PcmjqAioomqWOw25H4BluVfJ1WO_zapg_nPxORUR7JM,7639
|
123
|
+
retab/utils/_model_cards/xai.yaml,sha256=OdVV33_WODc4UBZhDezcUq_5mHQK5zeOT49EjJUJ764,612
|
124
|
+
retab/utils/usage/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
125
|
+
retab/utils/usage/usage.py,sha256=PoQAMSWqEXYIRdp-JW9HjecFVitD_oMbxDMtDJdqWnQ,12948
|
126
|
+
retab-0.0.42.dist-info/METADATA,sha256=iXf44YON_rAIYSUqLblaiAahfFIMoyTivm1UkPYxrx8,4549
|
127
|
+
retab-0.0.42.dist-info/WHEEL,sha256=HiCZjzuy6Dw0hdX5R3LCFPDmFS4BWl8H-8W39XfmgX4,91
|
128
|
+
retab-0.0.42.dist-info/top_level.txt,sha256=waQR0EGdhLIQtztoE3AXg7ik5ONQ9q_bsKVpyFuJdq0,6
|
129
|
+
retab-0.0.42.dist-info/RECORD,,
|