developerJenis commited on
Commit
663e2a6
ยท
verified ยท
1 Parent(s): 17bf815

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +103 -15
README.md CHANGED
@@ -1,23 +1,111 @@
1
- # Gothi Tech LLP
 
 
 
 
 
2
 
3
- **Building the future of Document AI**
 
 
4
 
5
- We develop production-grade AI models for intelligent document processing, OCR, and text extraction.
6
 
7
- ## Our Models
 
 
8
 
9
- | Model | Description |
10
- |-------|-------------|
11
- | [GT-REX](https://huggingface.co/gothitech/GT-REX) | Production OCR model with Vision-Language architecture for enterprise document understanding |
 
 
 
12
 
13
- ## What We Do
14
 
15
- - Intelligent Document Processing (IDP)
16
- - OCR and Text Extraction
17
- - Handwriting Recognition
18
- - Structured Data Extraction (JSON, tables, forms)
19
- - Multi-language Document Understanding
20
 
21
- ## Links
22
 
23
- - Website: [gothi.in](https://gothi.in/)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ title: Gothi Tech LLP
3
+ emoji: ๐Ÿฆ–
4
+ colorFrom: blue
5
+ colorTo: purple
6
+ ---
7
 
8
+ <p align="center">
9
+ <img src="https://huggingface.co/avatars/gothitech" width="120" alt="Gothi Tech Logo">
10
+ </p>
11
 
12
+ <h1 align="center">Gothi Tech LLP</h1>
13
 
14
+ <p align="center">
15
+ <strong>Building the Future of Document AI</strong>
16
+ </p>
17
 
18
+ <p align="center">
19
+ <a href="https://gothi.in/"><img src="https://img.shields.io/badge/Website-gothi.in-blue" alt="Website"></a>
20
+ <a href="https://huggingface.co/gothitech"><img src="https://img.shields.io/badge/HuggingFace-gothitech-yellow" alt="HuggingFace"></a>
21
+ <a href="#"><img src="https://img.shields.io/badge/License-MIT-green" alt="License"></a>
22
+ <a href="#"><img src="https://img.shields.io/badge/Made_in-India-orange" alt="Made in India"></a>
23
+ </p>
24
 
25
+ ---
26
 
27
+ ## ๐Ÿ‘‹ About Us
 
 
 
 
28
 
29
+ **Gothi Tech LLP** is an AI-first company specializing in **Document Intelligence** and **Vision-Language Models**. We build production-grade AI systems that help enterprises automate document processing, extract structured data, and unlock insights from unstructured documents at scale.
30
 
31
+ Our mission is to make document understanding **fast, accurate, and accessible** for businesses of all sizes.
32
+
33
+ ---
34
+
35
+ ## ๐Ÿฆ– Our Models
36
+
37
+ | Model | Type | Size | Description |
38
+ |-------|------|------|-------------|
39
+ | **[GT-REX](https://huggingface.co/gothitech/GT-REX)** | Vision-Language (VLM) | ~7B | Production OCR model for enterprise document understanding, text extraction, and structured data output |
40
+
41
+ ### GT-REX Variants
42
+
43
+ | Variant | Resolution | Speed | Best For |
44
+ |---------|-----------|-------|----------|
45
+ | **Nano** | 640px | ~1-2s | High-volume batch processing (100+ docs/min) |
46
+ | **Pro** | 1024px | ~2-5s | Standard workflows โ€” invoices, contracts, forms |
47
+ | **Ultra** | 1536px | ~5-10s | Fine print, dense tables, legal and medical docs |
48
+
49
+ ---
50
+
51
+ ## ๐Ÿ”ฌ What We Do
52
+
53
+ | Area | Capabilities |
54
+ |------|-------------|
55
+ | **Document AI** | Intelligent Document Processing (IDP), automated data extraction |
56
+ | **OCR** | High-accuracy text extraction from printed and scanned documents |
57
+ | **Handwriting** | Recognition and transcription of handwritten text |
58
+ | **Structured Output** | Extract data as JSON, Markdown tables, key-value pairs, custom schemas |
59
+ | **Multi-Language** | Document understanding across multiple languages |
60
+ | **Table Extraction** | Accurate extraction of complex and nested table structures |
61
+
62
+ ---
63
+
64
+ ## ๐Ÿข Industries We Serve
65
+
66
+ | Industry | Use Cases |
67
+ |----------|-----------|
68
+ | ๐Ÿฆ **Finance** | Invoice processing, receipt scanning, bank statements |
69
+ | โš–๏ธ **Legal** | Contract analysis, clause extraction, legal filings |
70
+ | ๐Ÿฅ **Healthcare** | Medical records, prescriptions, lab reports |
71
+ | ๐Ÿ›๏ธ **Government** | Form processing, ID verification, tax documents |
72
+ | ๐Ÿ›ก๏ธ **Insurance** | Claims processing, policy documents |
73
+ | ๐Ÿ“ฆ **Logistics** | Shipping labels, waybills, packing lists |
74
+
75
+ ---
76
+
77
+ ## ๐Ÿš€ Quick Start
78
+ ```python
79
+ from vllm import LLM, SamplingParams
80
+ from PIL import Image
81
+
82
+ llm = LLM(
83
+ model="gothitech/GT-REX",
84
+ trust_remote_code=True,
85
+ max_model_len=4096,
86
+ gpu_memory_utilization=0.75,
87
+ )
88
+
89
+ image = Image.open("document.png")
90
+ outputs = llm.generate(
91
+ [{"prompt": "Extract all text from this document.", "multi_modal_data": {"image": image}}],
92
+ sampling_params=SamplingParams(temperature=0.0, max_tokens=4096),
93
+ )
94
+ print(outputs[0].outputs[0].text)
95
+ ```
96
+
97
+ ---
98
+
99
+ ## ๐Ÿ”— Links
100
+
101
+ | | |
102
+ |---|---|
103
+ | ๐ŸŒ **Website** | [gothi.in](https://gothi.in/) |
104
+ | ๐Ÿค— **HuggingFace** | [gothitech](https://huggingface.co/gothitech) |
105
+ | ๐Ÿฆ– **GT-REX Model** | [gothitech/GT-REX](https://huggingface.co/gothitech/GT-REX) |
106
+
107
+ ---
108
+
109
+ <p align="center">
110
+ <strong>๐Ÿ‡ฎ๐Ÿ‡ณ Proudly built in India by Gothi Tech LLP</strong>
111
+ </p>