Update README.md
Browse files
README.md
CHANGED
|
@@ -9,14 +9,17 @@ tags:
|
|
| 9 |
- text-generation
|
| 10 |
- code
|
| 11 |
- tajikgpt
|
| 12 |
-
-
|
|
|
|
|
|
|
|
|
|
| 13 |
pipeline_tag: text-generation
|
| 14 |
inference: false
|
| 15 |
---
|
| 16 |
|
| 17 |
# TJ-Coder
|
| 18 |
|
| 19 |
-
TJ-Coder is a code-specialized model from [TajikGPT](https://tajikgpt.com) by [SoulLab](https://soullab.space). Optimized for code generation, debugging, and explanation.
|
| 20 |
|
| 21 |
## Model Details
|
| 22 |
|
|
@@ -31,13 +34,22 @@ TJ-Coder is a code-specialized model from [TajikGPT](https://tajikgpt.com) by [S
|
|
| 31 |
|
| 32 |
## Intended Use
|
| 33 |
|
| 34 |
-
- Code generation in Python, JavaScript, Java, C++, and more
|
| 35 |
-
- Code review and
|
| 36 |
-
- Code explanation and documentation
|
| 37 |
-
- Algorithm design
|
|
|
|
| 38 |
|
| 39 |
## How to Use
|
| 40 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 41 |
```python
|
| 42 |
from tajikgpt import TajikGPT
|
| 43 |
|
|
@@ -50,9 +62,33 @@ response = client.chat.completions.create(
|
|
| 50 |
print(response.choices[0].message.content)
|
| 51 |
```
|
| 52 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 53 |
## Links
|
| 54 |
|
| 55 |
- [TajikGPT Platform](https://tajikgpt.com)
|
| 56 |
- [TJ-Coder IDE](https://tajikgpt.com/coder)
|
| 57 |
- [API Documentation](https://tajikgpt.com/docs)
|
| 58 |
-
- [Python SDK](https://pypi.org/project/tajikgpt/)
|
|
|
|
|
|
|
|
|
| 9 |
- text-generation
|
| 10 |
- code
|
| 11 |
- tajikgpt
|
| 12 |
+
- tajikgpt-team
|
| 13 |
+
- code-generation
|
| 14 |
+
- programming
|
| 15 |
+
- ai-coding
|
| 16 |
pipeline_tag: text-generation
|
| 17 |
inference: false
|
| 18 |
---
|
| 19 |
|
| 20 |
# TJ-Coder
|
| 21 |
|
| 22 |
+
TJ-Coder is a code-specialized model from [TajikGPT](https://tajikgpt.com) by [SoulLab](https://soullab.space). Optimized for code generation, debugging, review and explanation across all major programming languages.
|
| 23 |
|
| 24 |
## Model Details
|
| 25 |
|
|
|
|
| 34 |
|
| 35 |
## Intended Use
|
| 36 |
|
| 37 |
+
- Code generation in Python, JavaScript, TypeScript, Java, C++, Go, Rust and more
|
| 38 |
+
- Code review, debugging and optimization
|
| 39 |
+
- Code explanation and documentation generation
|
| 40 |
+
- Algorithm design and data structure implementation
|
| 41 |
+
- SQL queries, shell scripts, DevOps configurations
|
| 42 |
|
| 43 |
## How to Use
|
| 44 |
|
| 45 |
+
TJ-Coder is available via the [TajikGPT API](https://tajikgpt.com/docs) and the dedicated [TJ-Coder IDE](https://tajikgpt.com/coder). It is not available for download.
|
| 46 |
+
|
| 47 |
+
### Python SDK
|
| 48 |
+
|
| 49 |
+
```bash
|
| 50 |
+
pip install tajikgpt
|
| 51 |
+
```
|
| 52 |
+
|
| 53 |
```python
|
| 54 |
from tajikgpt import TajikGPT
|
| 55 |
|
|
|
|
| 62 |
print(response.choices[0].message.content)
|
| 63 |
```
|
| 64 |
|
| 65 |
+
### REST API
|
| 66 |
+
|
| 67 |
+
```bash
|
| 68 |
+
curl -X POST https://tajikgpt.com/api/tj/chat \
|
| 69 |
+
-H "Content-Type: application/json" \
|
| 70 |
+
-H "Authorization: Bearer sk-tj-your-key" \
|
| 71 |
+
-d '{
|
| 72 |
+
"model": "tj-coder",
|
| 73 |
+
"messages": [{"role": "user", "content": "Write a REST API in Node.js"}]
|
| 74 |
+
}'
|
| 75 |
+
```
|
| 76 |
+
|
| 77 |
+
## Model Family
|
| 78 |
+
|
| 79 |
+
| Model | Description | Tier |
|
| 80 |
+
|-------|-------------|------|
|
| 81 |
+
| [TJ-1.0 Mini](https://huggingface.co/TajikGPT-Team/tj-1.0-mini) | Fast, lightweight | Free |
|
| 82 |
+
| [TJ-1.0](https://huggingface.co/TajikGPT-Team/tj-1.0) | Balanced speed & quality | Free |
|
| 83 |
+
| [TJ-1.0 Pro](https://huggingface.co/TajikGPT-Team/tj-1.0-pro) | Advanced + Vision | Plus |
|
| 84 |
+
| [TJ-1.0 Ultra](https://huggingface.co/TajikGPT-Team/tj-1.0-ultra) | Top performance | Plus |
|
| 85 |
+
| **TJ-Coder** | **Code specialist** | **Free** |
|
| 86 |
+
|
| 87 |
## Links
|
| 88 |
|
| 89 |
- [TajikGPT Platform](https://tajikgpt.com)
|
| 90 |
- [TJ-Coder IDE](https://tajikgpt.com/coder)
|
| 91 |
- [API Documentation](https://tajikgpt.com/docs)
|
| 92 |
+
- [Python SDK on PyPI](https://pypi.org/project/tajikgpt/)
|
| 93 |
+
- [Try TajikGPT Demo](https://huggingface.co/spaces/TajikGPT-Team/tajikgpt)
|
| 94 |
+
- [SoulLab](https://soullab.space)
|