Muhammad Aminov commited on
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,5 +1,58 @@
|
|
| 1 |
-
---
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language:
|
| 3 |
+
- ru
|
| 4 |
+
- en
|
| 5 |
+
- tg
|
| 6 |
+
license: other
|
| 7 |
+
license_name: proprietary
|
| 8 |
+
tags:
|
| 9 |
+
- text-generation
|
| 10 |
+
- code
|
| 11 |
+
- tajikgpt
|
| 12 |
+
- soullab
|
| 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 |
+
|
| 23 |
+
| Property | Value |
|
| 24 |
+
|----------|-------|
|
| 25 |
+
| Developer | SoulLab |
|
| 26 |
+
| Model type | Code Language Model |
|
| 27 |
+
| Max output tokens | 32,768 |
|
| 28 |
+
| Context window | 131,072 tokens |
|
| 29 |
+
| Languages | Russian, English + all major programming languages |
|
| 30 |
+
| License | Proprietary |
|
| 31 |
+
|
| 32 |
+
## Intended Use
|
| 33 |
+
|
| 34 |
+
- Code generation in Python, JavaScript, Java, C++, and more
|
| 35 |
+
- Code review and debugging
|
| 36 |
+
- Code explanation and documentation
|
| 37 |
+
- Algorithm design
|
| 38 |
+
|
| 39 |
+
## How to Use
|
| 40 |
+
|
| 41 |
+
```python
|
| 42 |
+
from tajikgpt import TajikGPT
|
| 43 |
+
|
| 44 |
+
client = TajikGPT(api_key="sk-tj-your-key")
|
| 45 |
+
|
| 46 |
+
response = client.chat.completions.create(
|
| 47 |
+
model="tj-coder",
|
| 48 |
+
messages=[{"role": "user", "content": "Write a Python function to sort a list"}]
|
| 49 |
+
)
|
| 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/)
|