vowel8 commited on
Commit
42a8771
·
verified ·
1 Parent(s): 9968e1d

Delete README.md

Browse files
Files changed (1) hide show
  1. README.md +0 -91
README.md DELETED
@@ -1,91 +0,0 @@
1
- ---
2
- license: apache-2.0
3
- language:
4
- - en
5
- base_model:
6
- - Qwen/Qwen3-4B-Thinking-2507
7
- pipeline_tag: text-generation
8
- library_name: transformers
9
- ---
10
- # Jan-v1: Advanced Agentic Language Model
11
-
12
- [![GitHub](https://img.shields.io/badge/GitHub-Repository-blue?logo=github)](https://github.com/menloresearch/deep-research)
13
- [![License](https://img.shields.io/badge/License-Apache%202.0-yellow)](https://opensource.org/licenses/Apache-2.0)
14
- [![Jan App](https://img.shields.io/badge/Powered%20by-Jan%20App-purple?style=flat&logo=android)](https://jan.ai/)
15
-
16
- <!-- Optional: If you have a GIF for Jan-v1, include it here like Lucy's. -->
17
- <!-- ![image/gif](jan_v1_demo.gif) -->
18
-
19
- ## Overview
20
- **Jan-v1** is the first release in the **Jan Family**, designed for agentic reasoning and problem-solving within the [Jan App](https://jan.ai/). Based on our [**Lucy**](https://huggingface.co/Menlo/Lucy) model, Jan-v1 achieves improved performance through model scaling.
21
-
22
- Jan-v1 uses the [Qwen3-4B-thinking](https://huggingface.co/Qwen/Qwen3-4B-Thinking-2507) model to provide enhanced reasoning capabilities and tool utilization. This architecture delivers better performance on complex agentic tasks.
23
-
24
- ## Performance
25
-
26
- ### Question Answering (SimpleQA)
27
- For question-answering, Jan-v1 shows a significant performance gain from model scaling, achieving 91.1% accuracy.
28
-
29
- ![image/png](https://cdn-uploads.huggingface.co/production/uploads/65713d70f56f9538679e5a56/6CaETynCW18MXgDrbp_N9.png)
30
-
31
- *The 91.1% SimpleQA accuracy represents a significant milestone in factual question answering for models of this scale, demonstrating the effectiveness of our scaling and fine-tuning approach.*
32
-
33
- ### Chat Benchmarks
34
-
35
- These benchmarks evaluate the model's conversational and instructional capabilities.
36
-
37
- ![image/png](https://cdn-uploads.huggingface.co/production/uploads/65713d70f56f9538679e5a56/f3bzNYRuA_iTFQIcvu6Rr.png)
38
-
39
- ## Quick Start
40
-
41
- ### Integration with Jan App
42
-
43
- Jan-v1 is optimized for direct integration with the [Jan App](https://jan.ai/). Simply select the model from the Jan App interface for immediate access to its full capabilities.
44
-
45
- ![image/gif](demo.gif)
46
-
47
- ### Local Deployment
48
-
49
- **Using vLLM:**
50
- ```bash
51
- vllm serve janhq/Jan-v1-4B \
52
- --host 0.0.0.0 \
53
- --port 1234 \
54
- --enable-auto-tool-choice \
55
- --tool-call-parser hermes
56
-
57
- ```
58
-
59
- **Using llama.cpp:**
60
- ```bash
61
- llama-server --model Jan-v1-4B-Q4_K_M.gguf \
62
- --host 0.0.0.0 \
63
- --port 1234 \
64
- --jinja \
65
- --no-context-shift
66
- ```
67
-
68
- ### Recommended Parameters
69
-
70
- ```yaml
71
- temperature: 0.6
72
- top_p: 0.95
73
- top_k: 20
74
- min_p: 0.0
75
- max_tokens: 2048
76
- ```
77
-
78
-
79
- ## 🤝 Community & Support
80
-
81
- - **Discussions**: [HuggingFace Community](https://huggingface.co/janhq/Jan-v1-4B/discussions)
82
- - **Jan App**: Learn more about the Jan App at [jan.ai](https://jan.ai/)
83
-
84
- ## (*) Note
85
- By default we have system prompt in chat template, this is to make sure the model having the same performance with the benchmark result. You can also use the vanilla chat template without system prompt in the file [chat_template_raw.jinja](https://huggingface.co/janhq/Jan-v1-4B/blob/main/chat_template_raw.jinja).
86
-
87
- ## 📄 Citation
88
- ```bibtex
89
- Updated Soon
90
- ```
91
- ---