Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,31 @@
|
|
| 1 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
license: gpl-3.0
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
language: en
|
| 3 |
+
tags:
|
| 4 |
+
- code
|
| 5 |
+
- coding
|
| 6 |
+
- qwen2.5
|
| 7 |
+
- onnx
|
| 8 |
+
- int8
|
| 9 |
+
- web-ui
|
| 10 |
license: gpl-3.0
|
| 11 |
---
|
| 12 |
+
|
| 13 |
+
# JiRack Coder 7B INT8
|
| 14 |
+
|
| 15 |
+
A fast and efficient coding assistant with a clean built-in web UI, powered by Qwen2.5-Coder-7B-Instruct and optimized using Microsoft ONNX Runtime.
|
| 16 |
+
|
| 17 |
+
## Quick Start
|
| 18 |
+
|
| 19 |
+
### Run with Docker
|
| 20 |
+
|
| 21 |
+
```bash
|
| 22 |
+
docker run -d \
|
| 23 |
+
--name jirack_coder_7b \
|
| 24 |
+
-p 7869:7869 \
|
| 25 |
+
--restart unless-stopped \
|
| 26 |
+
cmsmanhattan/jirack_coder_7b_int8_qwenbase:latest
|
| 27 |
+
|
| 28 |
+
|
| 29 |
+
|
| 30 |
+
|
| 31 |
+
|