warshanks commited on
Commit
0fac6e3
·
verified ·
1 Parent(s): 6f83928

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +69 -0
README.md ADDED
@@ -0,0 +1,69 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ base_model:
4
+ - Menlo/Jan-nano
5
+ pipeline_tag: text-generation
6
+ library_name: transformers
7
+ ---
8
+ # Jan-Nano: An Agentic Model
9
+ <sub>*Note: Jan-Nano is a non-thinking model.*</sub>
10
+
11
+ [![GitHub](https://img.shields.io/badge/GitHub-Repository-blue?logo=github)](https://github.com/menloresearch/deep-research)
12
+
13
+ <div align="center">
14
+ <img src="https://cdn-uploads.huggingface.co/production/uploads/65713d70f56f9538679e5a56/wC7Xtolp7HOFIdKTOJhVt.png" width="300" alt="Jan-Nano">
15
+ </div>
16
+
17
+ Authors: [Alan Dao](https://scholar.google.com/citations?user=eGWws2UAAAAJ&hl=en), [Bach Vu Dinh](https://scholar.google.com/citations?user=7Lr6hdoAAAAJ&hl=vi)
18
+
19
+ ## Overview
20
+
21
+ Jan-Nano is a compact 4-billion parameter language model specifically designed and trained for deep research tasks. This model has been optimized to work seamlessly with Model Context Protocol (MCP) servers, enabling efficient integration with various research tools and data sources.
22
+
23
+ ## Evaluation
24
+ Jan-Nano has been evaluated on the SimpleQA benchmark using our MCP-based benchmark methodology, demonstrating strong performance for its model size:
25
+
26
+ ![image/png](https://cdn-uploads.huggingface.co/production/uploads/65713d70f56f9538679e5a56/sdRfF9FX5ApPow9gZ31No.png)
27
+
28
+ The evaluation was conducted using our MCP-based benchmark approach, which assesses the model's performance on SimpleQA tasks while leveraging its native MCP server integration capabilities. This methodology better reflects Jan-Nano's real-world performance as a tool-augmented research model, validating both its factual accuracy and its effectiveness in MCP-enabled environments.
29
+
30
+ ## How to Run Locally
31
+
32
+ ![Jan-Nano Demo](replay.gif)
33
+
34
+ Jan-Nano is currently supported by Jan, an open-source ChatGPT alternative that runs entirely on your computer. Jan provides a user-friendly interface for running local AI models with full privacy and control.
35
+
36
+ For non-jan app or tutorials there are guidance inside community section, please check those out! [Discussion](https://huggingface.co/Menlo/Jan-nano/discussions)
37
+
38
+ ### VLLM
39
+ Here is an example command you can use to run vllm with Jan-nano
40
+
41
+ ```
42
+ vllm serve Menlo/Jan-nano --host 0.0.0.0 --port 1234 --enable-auto-tool-choice --tool-call-parser hermes --chat-template ./qwen3_nonthinking.jinja
43
+ ```
44
+
45
+ Chat-template is already included in tokenizer so chat-template is optional, but in case it has issue you can download the template here [Non-think chat template](https://qwen.readthedocs.io/en/latest/_downloads/c101120b5bebcc2f12ec504fc93a965e/qwen3_nonthinking.jinja)
46
+
47
+ ### Recommended Sampling Parameters
48
+
49
+ - Temperature: 0.7
50
+ - Top-p: 0.8
51
+ - Top-k: 20
52
+ - Min-p: 0
53
+ -
54
+ ## 📄 Citation
55
+
56
+ ```bibtex
57
+ @misc{dao2025jannanotechnicalreport,
58
+ title={Jan-nano Technical Report},
59
+ author={Alan Dao and Dinh Bach Vu},
60
+ year={2025},
61
+ eprint={2506.22760},
62
+ archivePrefix={arXiv},
63
+ primaryClass={cs.CL},
64
+ url={https://arxiv.org/abs/2506.22760},
65
+ }
66
+ ```
67
+
68
+ ### Documentation
69
+ [Setup, Usage & FAQ](https://menloresearch.github.io/deep-research/)