File size: 3,743 Bytes
663e2a6
 
 
 
 
 
17bf815
663e2a6
a3f4218
663e2a6
17bf815
663e2a6
17bf815
663e2a6
 
 
17bf815
663e2a6
a3f4218
663e2a6
 
 
 
17bf815
663e2a6
17bf815
663e2a6
17bf815
663e2a6
17bf815
663e2a6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
---
title: Gothi Tech LLP
emoji: ๐Ÿฆ–
colorFrom: blue
colorTo: purple
---

<p align="center">
  <img src="https://gothi.in/gothi-text.png" width="120" alt="Gothi Tech Logo">
</p>

<h1 align="center">Gothi Tech LLP</h1>

<p align="center">
  <strong>Building the Future of Document AI</strong>
</p>

<p align="center">
  <!-- <a href="https://gothi.in/"><img src="https://gothi.in/gothi-text.png" alt="Website"></a> -->
  <a href="https://huggingface.co/gothitech"><img src="https://img.shields.io/badge/HuggingFace-gothitech-yellow" alt="HuggingFace"></a>
  <a href="#"><img src="https://img.shields.io/badge/License-MIT-green" alt="License"></a>
  <a href="#"><img src="https://img.shields.io/badge/Made_in-India-orange" alt="Made in India"></a>
</p>

---

## ๐Ÿ‘‹ About Us

**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.

Our mission is to make document understanding **fast, accurate, and accessible** for businesses of all sizes.

---

## ๐Ÿฆ– Our Models

| Model | Type | Size | Description |
|-------|------|------|-------------|
| **[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 |

### GT-REX Variants

| Variant | Resolution | Speed | Best For |
|---------|-----------|-------|----------|
| **Nano** | 640px | ~1-2s | High-volume batch processing (100+ docs/min) |
| **Pro** | 1024px | ~2-5s | Standard workflows โ€” invoices, contracts, forms |
| **Ultra** | 1536px | ~5-10s | Fine print, dense tables, legal and medical docs |

---

## ๐Ÿ”ฌ What We Do

| Area | Capabilities |
|------|-------------|
| **Document AI** | Intelligent Document Processing (IDP), automated data extraction |
| **OCR** | High-accuracy text extraction from printed and scanned documents |
| **Handwriting** | Recognition and transcription of handwritten text |
| **Structured Output** | Extract data as JSON, Markdown tables, key-value pairs, custom schemas |
| **Multi-Language** | Document understanding across multiple languages |
| **Table Extraction** | Accurate extraction of complex and nested table structures |

---

## ๐Ÿข Industries We Serve

| Industry | Use Cases |
|----------|-----------|
| ๐Ÿฆ **Finance** | Invoice processing, receipt scanning, bank statements |
| โš–๏ธ **Legal** | Contract analysis, clause extraction, legal filings |
| ๐Ÿฅ **Healthcare** | Medical records, prescriptions, lab reports |
| ๐Ÿ›๏ธ **Government** | Form processing, ID verification, tax documents |
| ๐Ÿ›ก๏ธ **Insurance** | Claims processing, policy documents |
| ๐Ÿ“ฆ **Logistics** | Shipping labels, waybills, packing lists |

---

## ๐Ÿš€ Quick Start
```python
from vllm import LLM, SamplingParams
from PIL import Image

llm = LLM(
    model="gothitech/GT-REX",
    trust_remote_code=True,
    max_model_len=4096,
    gpu_memory_utilization=0.75,
)

image = Image.open("document.png")
outputs = llm.generate(
    [{"prompt": "Extract all text from this document.", "multi_modal_data": {"image": image}}],
    sampling_params=SamplingParams(temperature=0.0, max_tokens=4096),
)
print(outputs[0].outputs[0].text)
```

---

## ๐Ÿ”— Links

| | |
|---|---|
| ๐ŸŒ **Website** | [gothi.in](https://gothi.in/) |
| ๐Ÿค— **HuggingFace** | [gothitech](https://huggingface.co/gothitech) |
| ๐Ÿฆ– **GT-REX Model** | [gothitech/GT-REX](https://huggingface.co/gothitech/GT-REX) |

---

<p align="center">
  <strong>๐Ÿ‡ฎ๐Ÿ‡ณ Proudly built in India by Gothi Tech LLP</strong>
</p>