retab 0.0.36__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.
Files changed (105) hide show
  1. retab-0.0.36/PKG-INFO +417 -0
  2. retab-0.0.36/README.md +375 -0
  3. retab-0.0.36/pyproject.toml +3 -0
  4. retab-0.0.36/retab.egg-info/PKG-INFO +417 -0
  5. retab-0.0.36/retab.egg-info/SOURCES.txt +103 -0
  6. retab-0.0.36/retab.egg-info/dependency_links.txt +1 -0
  7. retab-0.0.36/retab.egg-info/requires.txt +26 -0
  8. retab-0.0.36/retab.egg-info/top_level.txt +1 -0
  9. retab-0.0.36/setup.cfg +4 -0
  10. retab-0.0.36/setup.py +28 -0
  11. retab-0.0.36/tests/test_automations_links.py +57 -0
  12. retab-0.0.36/tests/test_automations_mailboxes.py +56 -0
  13. retab-0.0.36/tests/test_documents_api.py +262 -0
  14. retab-0.0.36/uiform/__init__.py +4 -0
  15. retab-0.0.36/uiform/_resource.py +28 -0
  16. retab-0.0.36/uiform/_utils/__init__.py +0 -0
  17. retab-0.0.36/uiform/_utils/ai_models.py +100 -0
  18. retab-0.0.36/uiform/_utils/benchmarking copy.py +588 -0
  19. retab-0.0.36/uiform/_utils/benchmarking.py +485 -0
  20. retab-0.0.36/uiform/_utils/chat.py +332 -0
  21. retab-0.0.36/uiform/_utils/display.py +443 -0
  22. retab-0.0.36/uiform/_utils/json_schema.py +2161 -0
  23. retab-0.0.36/uiform/_utils/mime.py +168 -0
  24. retab-0.0.36/uiform/_utils/responses.py +163 -0
  25. retab-0.0.36/uiform/_utils/stream_context_managers.py +52 -0
  26. retab-0.0.36/uiform/_utils/usage/__init__.py +0 -0
  27. retab-0.0.36/uiform/_utils/usage/usage.py +300 -0
  28. retab-0.0.36/uiform/client.py +701 -0
  29. retab-0.0.36/uiform/py.typed +0 -0
  30. retab-0.0.36/uiform/resources/__init__.py +0 -0
  31. retab-0.0.36/uiform/resources/consensus/__init__.py +3 -0
  32. retab-0.0.36/uiform/resources/consensus/client.py +114 -0
  33. retab-0.0.36/uiform/resources/consensus/completions.py +252 -0
  34. retab-0.0.36/uiform/resources/consensus/completions_stream.py +278 -0
  35. retab-0.0.36/uiform/resources/consensus/responses.py +325 -0
  36. retab-0.0.36/uiform/resources/consensus/responses_stream.py +373 -0
  37. retab-0.0.36/uiform/resources/documents/__init__.py +3 -0
  38. retab-0.0.36/uiform/resources/documents/client.py +255 -0
  39. retab-0.0.36/uiform/resources/documents/extractions.py +441 -0
  40. retab-0.0.36/uiform/resources/evals.py +812 -0
  41. retab-0.0.36/uiform/resources/files.py +24 -0
  42. retab-0.0.36/uiform/resources/finetuning.py +62 -0
  43. retab-0.0.36/uiform/resources/jsonlUtils.py +1046 -0
  44. retab-0.0.36/uiform/resources/models.py +45 -0
  45. retab-0.0.36/uiform/resources/openai_example.py +22 -0
  46. retab-0.0.36/uiform/resources/processors/__init__.py +3 -0
  47. retab-0.0.36/uiform/resources/processors/automations/__init__.py +9 -0
  48. retab-0.0.36/uiform/resources/processors/automations/client.py +78 -0
  49. retab-0.0.36/uiform/resources/processors/automations/endpoints.py +317 -0
  50. retab-0.0.36/uiform/resources/processors/automations/links.py +356 -0
  51. retab-0.0.36/uiform/resources/processors/automations/logs.py +211 -0
  52. retab-0.0.36/uiform/resources/processors/automations/mailboxes.py +435 -0
  53. retab-0.0.36/uiform/resources/processors/automations/outlook.py +444 -0
  54. retab-0.0.36/uiform/resources/processors/automations/tests.py +158 -0
  55. retab-0.0.36/uiform/resources/processors/client.py +474 -0
  56. retab-0.0.36/uiform/resources/prompt_optimization.py +76 -0
  57. retab-0.0.36/uiform/resources/schemas.py +369 -0
  58. retab-0.0.36/uiform/resources/secrets/__init__.py +9 -0
  59. retab-0.0.36/uiform/resources/secrets/client.py +20 -0
  60. retab-0.0.36/uiform/resources/secrets/external_api_keys.py +109 -0
  61. retab-0.0.36/uiform/resources/secrets/webhook.py +62 -0
  62. retab-0.0.36/uiform/resources/usage.py +271 -0
  63. retab-0.0.36/uiform/types/__init__.py +0 -0
  64. retab-0.0.36/uiform/types/ai_models.py +645 -0
  65. retab-0.0.36/uiform/types/automations/__init__.py +0 -0
  66. retab-0.0.36/uiform/types/automations/cron.py +58 -0
  67. retab-0.0.36/uiform/types/automations/endpoints.py +21 -0
  68. retab-0.0.36/uiform/types/automations/links.py +28 -0
  69. retab-0.0.36/uiform/types/automations/mailboxes.py +60 -0
  70. retab-0.0.36/uiform/types/automations/outlook.py +68 -0
  71. retab-0.0.36/uiform/types/automations/webhooks.py +21 -0
  72. retab-0.0.36/uiform/types/chat.py +8 -0
  73. retab-0.0.36/uiform/types/completions.py +93 -0
  74. retab-0.0.36/uiform/types/consensus.py +10 -0
  75. retab-0.0.36/uiform/types/db/__init__.py +0 -0
  76. retab-0.0.36/uiform/types/db/annotations.py +24 -0
  77. retab-0.0.36/uiform/types/db/files.py +36 -0
  78. retab-0.0.36/uiform/types/documents/__init__.py +0 -0
  79. retab-0.0.36/uiform/types/documents/correct_orientation.py +13 -0
  80. retab-0.0.36/uiform/types/documents/create_messages.py +226 -0
  81. retab-0.0.36/uiform/types/documents/extractions.py +297 -0
  82. retab-0.0.36/uiform/types/evals.py +207 -0
  83. retab-0.0.36/uiform/types/events.py +76 -0
  84. retab-0.0.36/uiform/types/extractions.py +85 -0
  85. retab-0.0.36/uiform/types/jobs/__init__.py +0 -0
  86. retab-0.0.36/uiform/types/jobs/base.py +150 -0
  87. retab-0.0.36/uiform/types/jobs/batch_annotation.py +22 -0
  88. retab-0.0.36/uiform/types/jobs/evaluation.py +133 -0
  89. retab-0.0.36/uiform/types/jobs/finetune.py +6 -0
  90. retab-0.0.36/uiform/types/jobs/prompt_optimization.py +41 -0
  91. retab-0.0.36/uiform/types/jobs/webcrawl.py +6 -0
  92. retab-0.0.36/uiform/types/logs.py +231 -0
  93. retab-0.0.36/uiform/types/mime.py +257 -0
  94. retab-0.0.36/uiform/types/modalities.py +68 -0
  95. retab-0.0.36/uiform/types/pagination.py +6 -0
  96. retab-0.0.36/uiform/types/schemas/__init__.py +0 -0
  97. retab-0.0.36/uiform/types/schemas/enhance.py +53 -0
  98. retab-0.0.36/uiform/types/schemas/evaluate.py +55 -0
  99. retab-0.0.36/uiform/types/schemas/generate.py +32 -0
  100. retab-0.0.36/uiform/types/schemas/layout.py +58 -0
  101. retab-0.0.36/uiform/types/schemas/object.py +631 -0
  102. retab-0.0.36/uiform/types/schemas/templates.py +107 -0
  103. retab-0.0.36/uiform/types/secrets/__init__.py +0 -0
  104. retab-0.0.36/uiform/types/secrets/external_api_keys.py +22 -0
  105. retab-0.0.36/uiform/types/standards.py +39 -0
retab-0.0.36/PKG-INFO ADDED
@@ -0,0 +1,417 @@
1
+ Metadata-Version: 2.1
2
+ Name: retab
3
+ Version: 0.0.36
4
+ Summary: UiForm official python library
5
+ Home-page: https://github.com/UiForm/uiform
6
+ Author: UiForm
7
+ Author-email: contact@uiform.com
8
+ Project-URL: Team website, https://uiform.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
+
43
+ # UiForm
44
+
45
+ <div align="center" style="margin-bottom: 1em;">
46
+
47
+ <img src="https://raw.githubusercontent.com/UiForm/uiform/refs/heads/main/assets/uiform-logo.png" alt="UiForm Logo" width="150">
48
+
49
+
50
+ *The AI Automation Platform*
51
+
52
+ Made with love by the team at [UiForm](https://uiform.com) 🤍.
53
+
54
+ [Our Website](https://uiform.com) | [Documentation](https://docs.uiform.com/get-started/introduction) | [Discord](https://discord.com/invite/vc5tWRPqag) | [Twitter](https://x.com/uiformAPI)
55
+
56
+
57
+ </div>
58
+
59
+ ---
60
+
61
+ ## How It Works
62
+
63
+ UiForm allows you to easily create document processing automations. Here is the general workflow:
64
+
65
+ ```mermaid
66
+ sequenceDiagram
67
+ User ->> UiForm: File Upload
68
+ UiForm -->> UiForm: Preprocessing
69
+ UiForm ->> AI Provider: Request on your behalf
70
+ AI Provider -->> UiForm: Structured Generation
71
+ UiForm ->> Webhook: Send result
72
+ UiForm ->> User: Send Confirmation
73
+ ```
74
+
75
+ ---
76
+
77
+ ## General philosophy
78
+
79
+ Many people haven't yet realized how powerful LLMs have become at document processing tasks - **we're here to help you unlock these capabilities**.
80
+
81
+ Our mission can be described as follows:
82
+
83
+ - **Smarter Document Processing**
84
+ > Convert any file type (PDFs, Excel, emails, etc.) into LLM-ready format without touching any line of code.
85
+
86
+ - **Scalable Workflow Automation**
87
+ > Create custom automation loops to process documents at scale.
88
+
89
+ - **Model Efficiency & Cost Optimization**
90
+ > Get consistent, reliable outputs using schema-based prompt engineering to reduce costs and improve performance.
91
+
92
+ You come with your own API key from your favorite AI provider, and we handle the rest in an **easy** and **transparent** way.
93
+
94
+ 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
+ <p align="center">
97
+ <img src="https://raw.githubusercontent.com/UiForm/uiform/refs/heads/main/assets/supported_models.png" alt="Supported Models" width="600">
98
+ </p>
99
+
100
+ ---
101
+
102
+ ## Quickstart
103
+
104
+ Explore our [Playground](https://www.uiform.com/dashboard/playground) and create your first automations easily 🚀!
105
+
106
+ <p align="center">
107
+ <img src="https://raw.githubusercontent.com/UiForm/uiform/refs/heads/main/assets/uiform-playground.png" alt="UiForm Playground" width="600">
108
+ </p>
109
+
110
+ ---
111
+
112
+ ---
113
+
114
+ ## Dev Mode 🔧
115
+
116
+ You need more control? You can access the [Documentation](https://docs.uiform.com/get-started/introduction) of our **Python SDK**.
117
+
118
+ 1. **Setup the Python SDK**
119
+ > Install the UiForm Python SDK and configure your API keys to start processing documents with your preferred AI provider.
120
+
121
+ 2. **Create your JSON schema**
122
+ > Define the structure of the data you want to extract from your documents using our schema format with custom prompting capabilities.
123
+
124
+ 3. **Create your FastAPI server with a webhook**
125
+ > Set up an endpoint that will receive the structured data extracted from your documents after processing.
126
+
127
+ 4. **Create your automation**
128
+ > Configure an automation (mailbox or link) that will automatically process incoming documents using your schema and send results to your webhook.
129
+
130
+ 5. **Test your automation**
131
+ > Validate your setup by sending test documents through your automation and verify the extracted data matches your requirements.
132
+
133
+ ### Step 1: Setup of the Python SDK
134
+
135
+ To get started, install the `uiform` package using pip:
136
+
137
+ ```bash
138
+ pip install uiform
139
+ ```
140
+
141
+ Then, [create your API key on uiform.com](https://www.uiform.com).
142
+
143
+ Create another API key by you favorite API key provider.
144
+
145
+ **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
+ 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 UiForm secrets manager:
148
+
149
+ ```
150
+ OPENAI_API_KEY=sk-xxxxxxxxx
151
+ UIFORM_API_KEY=sk_uiform_xxxxxxxxx
152
+ ```
153
+
154
+ ```bash
155
+ import uiform
156
+ import os
157
+
158
+ uiclient = uiform.UiForm()
159
+
160
+ uiclient.secrets.external_api_keys.create(
161
+ provider="OpenAI",
162
+ api_key=os.getenv("OPENAI_API_KEY")
163
+ )
164
+ ```
165
+
166
+ #### Process your first document with the create_messages method:
167
+
168
+ ```bash
169
+ from uiform import UiForm
170
+ from openai import OpenAI
171
+
172
+ # Initialize UiForm client
173
+ uiclient = UiForm()
174
+
175
+ # Convert any document into LLM-ready format
176
+ doc_msg = uiclient.documents.create_messages(
177
+ document = "invoice.pdf" # Works with PDFs, Excel, emails, etc.
178
+ )
179
+
180
+ client = OpenAI()
181
+ completion = client.chat.completions.create(
182
+ model="gpt-4.1-nano",
183
+ messages=doc_msg.openai_messages + [
184
+ {
185
+ "role": "user",
186
+ "content": "Summarize the document"
187
+ }
188
+ ]
189
+ )
190
+ ```
191
+
192
+ ### Step 2: Create your JSON Schema
193
+
194
+ We use a standard JSON Schema with custom annotations (`X-SystemPrompt`, `X-FieldPrompt`, and `X-ReasoningPrompt`) as a prompt-engineering framework for the extraction process.
195
+
196
+ These annotations help guide the LLM’s behavior and improve extraction accuracy.
197
+
198
+ You can learn more about these in our [JSON Schema documentation](https://docs.uiform.com/get-started/prompting-with-the-JSON-schema).
199
+
200
+ ```bash
201
+ from uiform import UiForm
202
+ from openai import OpenAI
203
+ from pydantic import BaseModel, Field, ConfigDict
204
+
205
+ # Define your extraction schema
206
+ class Invoice(BaseModel):
207
+ model_config = ConfigDict(
208
+ json_schema_extra = {
209
+ "X-SystemPrompt": "You are an expert at analyzing invoice documents."
210
+ }
211
+ )
212
+
213
+ total_amount: float = Field(...,
214
+ description="The total invoice amount",
215
+ json_schema_extra={
216
+ "X-FieldPrompt": "Find the final total amount including taxes"
217
+ }
218
+ )
219
+ date: str = Field(...,
220
+ description="Invoice date in YYYY-MM-DD format",
221
+ json_schema_extra={
222
+ "X-ReasoningPrompt": "Look for dates labeled as 'Invoice Date', 'Date', etc."
223
+ }
224
+ )
225
+
226
+ # Process document and extract data
227
+ uiclient = UiForm()
228
+ doc_msg = uiclient.documents.create_messages(
229
+ document = "invoice.pdf"
230
+ )
231
+ schema_obj = uiclient.schemas.load(
232
+ pydantic_model = Invoice
233
+ )
234
+
235
+ # Extract structured data with any LLM
236
+ client = OpenAI()
237
+ completion = client.beta.chat.completions.parse(
238
+ model="gpt-4o",
239
+ messages=schema_obj.openai_messages + doc_msg.openai_messages,
240
+ response_format=schema_obj.inference_pydantic_model
241
+ )
242
+
243
+ print("Extracted data:", completion.choices[0].message.parsed)
244
+
245
+ # Validate the response against the original schema if you want to remove the reasoning fields
246
+ from uiform._utils.json_schema import filter_auxiliary_fields_json
247
+ assert completion.choices[0].message.content is not None
248
+ extraction = schema_obj.pydantic_model.model_validate(
249
+ filter_auxiliary_fields_json(completion.choices[0].message.content, schema_obj.pydantic_model)
250
+ )
251
+
252
+ print("Extracted data without the reasoning fields:", extraction)
253
+ ```
254
+
255
+ ### Step 3: Create your FastAPI server with a webhook
256
+
257
+ Next, set up a FastAPI route that will handle incoming webhook POST requests.
258
+
259
+ Below is an example of a simple FastAPI application with a webhook endpoint:
260
+
261
+ ```bash
262
+ from fastapi import FastAPI, Request
263
+ from fastapi.responses import JSONResponse
264
+ from uiform.types.automations.webhooks import WebhookRequest
265
+ from pydantic import BaseModel, Field, ConfigDict
266
+
267
+ app = FastAPI()
268
+
269
+ @app.post("/webhook")
270
+ async def webhook(request: WebhookRequest):
271
+ invoice_object = request.completion.choices[0].message.parsed # The parsed object is the same Invoice object as the one you defined in the Pydantic model
272
+ print("Received payload:", invoice_object)
273
+ return JSONResponse(content={"status": "success", "data": invoice_object})
274
+
275
+ # To run the FastAPI app locally, use the command:
276
+ # uvicorn your_module_name:app --reload
277
+ if __name__ == "__main__":
278
+ import uvicorn
279
+ uvicorn.run(app, host="0.0.0.0", port=8000)
280
+ ```
281
+
282
+ You can test the webhook endpoint locally with a tool like curl or Postman - for example, using curl:
283
+
284
+ ```bash
285
+ curl -X POST "http://localhost:8000/webhook" \
286
+ -H "Content-Type: application/json" \
287
+ -d '{"name": "Team Meeting", "date": "2023-12-31"}'
288
+ ```
289
+
290
+ > ⚠️ **To continue**, you need to deploy your FastAPI app to a server to make your webhook endpoint publicly accessible.
291
+ > We recommend using [Replit](https://replit.com) to get started quickly if you don’t have a server yet.
292
+
293
+ ### Step 4: Create your automation
294
+
295
+ Finally, integrate the webhook with your automation system using the `uiform` client.
296
+
297
+ This example demonstrates how to create an automation that triggers the webhook when a matching event occurs:
298
+
299
+ ```bash
300
+ from uiform import UiForm
301
+
302
+ # Initialize the UiForm client
303
+ uiclient = UiForm()
304
+
305
+ # Create an automation that uses the webhook URL from Step 2
306
+ automation = uiclient.processors.automations.mailboxes.create(
307
+ email="invoices@mailbox.uiform.com",
308
+ model="gpt-4.1-nano",
309
+ json_schema=Invoice.model_json_schema(), # use the pydantic model to create the json schema
310
+ webhook_url="https://your-server.com/webhook", # Replace with your actual webhook URL
311
+ )
312
+ ```
313
+
314
+ At any email sent to `invoices@mailbox.uiform.com`, the automation will send a POST request to your FastAPI webhook endpoint, where the payload can be processed.
315
+
316
+ You can see the automation you just created on your [dashboard](https://www.uiform.com/dashboard/processors)!
317
+
318
+ ### Step 5: Test your automation
319
+
320
+ Finally, you can test the automation rapidly with the test functions of the sdk:
321
+
322
+ ```bash
323
+ from uiform import UiForm
324
+
325
+ # Initialize the UiForm client
326
+ uiclient = UiForm()
327
+
328
+ # If you just want to send a test request to your webhook
329
+ log = uiclient.processors.automations.mailboxes.tests.webhook(
330
+ email="test-mailbox-local@devmail.uiform.com",
331
+ )
332
+
333
+ # If you want to test the file processing logic:
334
+ log = uiclient.processors.automations.mailboxes.tests.process(
335
+ email="test-mailbox-local@devmail.uiform.com",
336
+ document="your_invoice_email.eml"
337
+ )
338
+
339
+ # If you want to test a full email forwarding
340
+ log = uiclient.processors.automations.mailboxes.tests.forward(
341
+ email="uiform-quickstart@mailbox.uiform.com",
342
+ document="your_invoice_email.eml"
343
+ )
344
+ ```
345
+
346
+ > 💡 **Tip:** You can also test your webhook locally by overriding the webhook URL set in the automation.
347
+
348
+ ```bash
349
+ from uiform import UiForm
350
+
351
+ uiclient = UiForm()
352
+
353
+ # If you just want to send a test request to your webhook
354
+ log = uiclient.processors.automations.mailboxes.tests.webhook(
355
+ email="test-mailbox-local@devmail.uiform.com",
356
+ 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
+ ```
359
+
360
+ 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.uiform.com) to the pro plan to get more.
362
+
363
+ But this minimalistic example is just the beginning.
364
+
365
+ Continue reading to learn more about how to use UiForm **to its full potential** 🔥.
366
+
367
+ ---
368
+
369
+ ## Go further
370
+
371
+ - [Prompt Engineering Guide](https://docs.uiform.com/get-started/prompting-with-the-json-schema)
372
+ - [General Concepts](https://docs.uiform.com/get-started/General-Concepts)
373
+ - [Consensus](https://docs.uiform.com/SDK/General-Concepts#consensus)
374
+ - [Create mailboxes](https://docs.uiform.com/SDK/Automations#mailbox)
375
+ - [Create links](https://docs.uiform.com/SDK/Automations#link)
376
+ - Finetuning (coming soon)
377
+ - Prompt optimization (coming soon)
378
+ - Data-Labelling with our AI-powered annotator (coming soon)
379
+
380
+ ---
381
+
382
+ ## Jupyter Notebooks
383
+
384
+ You can view minimal notebooks that demonstrate how to use UiForm to process documents:
385
+
386
+ - [Mailbox creation quickstart](https://github.com/UiForm/uiform/blob/main/notebooks/mailboxes_quickstart.ipynb)
387
+ - [Upload Links creation quickstart](https://github.com/UiForm/uiform/blob/main/notebooks/links_quickstart.ipynb)
388
+ - [Document Extractions quickstart](https://github.com/UiForm/uiform/blob/main/notebooks/Quickstart.ipynb)
389
+ - [Document Extractions quickstart - Async](https://github.com/UiForm/uiform/blob/main/notebooks/Quickstart-Async.ipynb)
390
+
391
+ ---
392
+
393
+ ## Community
394
+
395
+ Let's create the future of document processing together!
396
+
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/uiformAPI) at us.
398
+
399
+ We can't wait to see how you'll use UiForm.
400
+
401
+ - [Discord](https://discord.com/invite/vc5tWRPqag)
402
+ - [Twitter](https://x.com/uiformAPI)
403
+
404
+
405
+ ## Roadmap
406
+
407
+ We publicly share our Roadmap with the community.
408
+
409
+ Please open an issue or [contact us on X](https://x.com/sachaicb) if you have suggestions or ideas.
410
+
411
+ - [ ] node client with ZOD
412
+ - [ ] Make a json-schema zoo
413
+ - [ ] Offer tools to display tokens usage to our users
414
+ - [ ] Launch the data-labelling API (Dataset Upload / Creation / Management / Labelling / Distillation)
415
+ - [ ] Launch the data-labelling platform: A web app based on the data-labelling API with a nice UI
416
+ - [ ] Launch the prompt-optimisation sdk
417
+ - [ ] Launch the finetuning sdk