Zzsnow commited on
Commit
53eb3fa
·
verified ·
1 Parent(s): bb46013

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +16 -16
README.md CHANGED
@@ -7,19 +7,19 @@ base_model:
7
  - Qwen/Qwen3.5-9B
8
  ---
9
 
10
- # CoPaw-Flash-9B
11
- **CoPaw-Flash** is a lightweight model deeply optimized for the CoPaw autonomous agent scenario. Since its training phase, the model has been specifically refined for CoPaw tasks, delivering enhanced agentic performance in tool invocation, command execution, memory management, and multi-step planning.
12
 
13
  ## Capability
14
- The core strength of CoPaw-Flash stems from its native integration with the CoPaw ecosystem. We have constructed extensive, high-quality agent trajectory data sampled from real CoPaw environments, systematically enhancing the model's proficiency in high-frequency daily scenarios. Key features include:
15
 
16
  + **Active Memory Management:** Autonomously identifies, stores, and retrieves persistent user preferences and task states, ensuring high logical consistency across multi-turn interactions.
17
  + **Native File Parsing:** Optimized for terminal operations and file system orchestration. Excels at generating precise CLI commands and executing complex, multi-step file I/O tasks.
18
  + **Efficient Information Search:** Enhanced for web-search tool invocation. Features precise search intent recognition and multi-step web navigation to effectively identify and query online information.
19
- + **Intelligent Guidance:** Built-in awareness of the CoPaw feature map. Proactively suggests functional paths and troubleshooting based on real-time operational context.
20
 
21
  ## Model Overview
22
- CoPaw-Flash-2B/4B/9B is fine-tuned from Qwen3.5-2B/4B/9B, sharing the same architectural parameters.
23
 
24
  + **Type:** Causal Language Model with Vision Encoder
25
  + **Training Stage:** Post-training
@@ -40,24 +40,24 @@ CoPaw-Flash-2B/4B/9B is fine-tuned from Qwen3.5-2B/4B/9B, sharing the same archi
40
  + **Context Length:** 262,144 tokens natively
41
 
42
  ## Benchmark Results
43
- The complexity of CoPaw's context engineering and tool usage poses heightened challenges for model evaluation. To address this, we have developed a dedicated benchmark tailored to the CoPaw environment. This benchmark systematically evaluates model performance across five high-frequency usage scenarios, covering key operational dimensions.
44
 
45
- Results indicate that CoPaw-Flash delivers substantial improvements across multiple task categories, achieving performance comparable to leading flagship models—all while maintaining significantly lower resource requirements.
46
 
47
  <img src="https://img.alicdn.com/imgextra/i2/O1CN01uQsLX61XbwkjLtHuP_!!6000000002943-2-tps-1264-888.png" width="632" title="" crop="0,0,1,1" id="ufe625d3c" class="ne-image">
48
 
49
- Figure 1: CoPaw-Flash-9B compared with other models.
50
 
51
  <img src="https://img.alicdn.com/imgextra/i1/O1CN01OKDCHQ1yuic00Qmyu_!!6000000006639-2-tps-1984-975.png" width="628" title="" crop="0,0,1,1" id="u15257ae6" class="ne-image">
52
 
53
- Figure 2: CoPaw-Flash-2B/4B/9B compared with their respective baseline models.
54
 
55
  ## Quickstart
56
- ### <font style="color:rgb(31, 35, 40);">Serving CoPaw-Flash</font>
57
- CoPaw-Flash<font style="color:rgb(31, 35, 40);"> can be served via APIs using popular inference frameworks. Below are example commands to launch OpenAI-compatible API servers for CoPaw-Flash.</font>
58
 
59
  #### <font style="color:rgb(31, 35, 40);">vLLM</font>
60
- vLLM is a high-throughput and memory-efficient inference and serving engine for LLMs. Since CoPaw-Flash leverages the Qwen3.5 architecture, the latest vLLM version is required for optimal compatibility. You can install it in a fresh environment using:
61
 
62
  ```plain
63
  uv pip install vllm --torch-backend=auto --extra-index-url https://wheels.vllm.ai/nightly
@@ -83,8 +83,8 @@ vllm serve <your_model_path> \
83
 
84
 
85
 
86
- ### Using CoPaw-Flash via Chat Completions API
87
- Once the server is running, you can access CoPaw-Flash via standard HTTP requests or OpenAI-compatible SDKs.
88
 
89
  #### <font style="color:rgb(31, 35, 40);">Prerequisites</font>
90
  Ensure the OpenAI Python SDK is installed and your environment variables are configured:
@@ -108,7 +108,7 @@ from openai import OpenAI
108
  client = OpenAI()
109
 
110
  messages = [
111
- {"role": "user", "content": "Hello, Copaw!"},
112
  ]
113
 
114
  chat_response = client.chat.completions.create(
@@ -126,7 +126,7 @@ print("Chat response:", chat_response)
126
  ```
127
 
128
  ## Contact Us
129
- CoPaw-Flash is developed by the AgentScope Team. If you would like to leave us a message, feel free to get in touch through the channels below.
130
  | [Discord](https://discord.gg/eYMpfnkG8h) | [X (Twitter)](https://x.com/agentscope_ai) | [DingTalk](https://qr.dingtalk.com/action/joingroup?code=v1,k1,OmDlBXpjW+I2vWjKDsjvI9dhcXjGZi3bQiojOq3dlDw=&_dt_no_comment=1&origin=11) |
131
  | ------------------------------------------------------------ | ------------------------------------------------------------ | ------------------------------------------------------------ |
132
  | [<img src="https://gw.alicdn.com/imgextra/i1/O1CN01hhD1mu1Dd3BWVUvxN_!!6000000000238-2-tps-400-400.png" width="80" height="80" alt="Discord">](https://discord.gg/eYMpfnkG8h) | [<img src="https://img.alicdn.com/imgextra/i4/O1CN01c0GOsa1UTkoxAGVvZ_!!6000000002519-2-tps-225-225.png" width="80" height="80" alt="X">](https://x.com/agentscope_ai) | [<img src="https://img.alicdn.com/imgextra/i2/O1CN01vCWI8a1skHtLGXEMQ_!!6000000005804-2-tps-458-460.png" width="80" height="80" alt="DingTalk">](https://qr.dingtalk.com/action/joingroup?code=v1,k1,OmDlBXpjW+I2vWjKDsjvI9dhcXjGZi3bQiojOq3dlDw=&_dt_no_comment=1&origin=11) |
 
7
  - Qwen/Qwen3.5-9B
8
  ---
9
 
10
+ # QwenPaw-Flash-9B
11
+ **QwenPaw-Flash** is a lightweight model deeply optimized for the QwenPaw autonomous agent scenario. Since its training phase, the model has been specifically refined for QwenPaw tasks, delivering enhanced agentic performance in tool invocation, command execution, memory management, and multi-step planning.
12
 
13
  ## Capability
14
+ The core strength of QwenPaw-Flash stems from its native integration with the QwenPaw ecosystem. We have constructed extensive, high-quality agent trajectory data sampled from real QwenPaw environments, systematically enhancing the model's proficiency in high-frequency daily scenarios. Key features include:
15
 
16
  + **Active Memory Management:** Autonomously identifies, stores, and retrieves persistent user preferences and task states, ensuring high logical consistency across multi-turn interactions.
17
  + **Native File Parsing:** Optimized for terminal operations and file system orchestration. Excels at generating precise CLI commands and executing complex, multi-step file I/O tasks.
18
  + **Efficient Information Search:** Enhanced for web-search tool invocation. Features precise search intent recognition and multi-step web navigation to effectively identify and query online information.
19
+ + **Intelligent Guidance:** Built-in awareness of the QwenPaw feature map. Proactively suggests functional paths and troubleshooting based on real-time operational context.
20
 
21
  ## Model Overview
22
+ QwenPaw-Flash-2B/4B/9B is fine-tuned from Qwen3.5-2B/4B/9B, sharing the same architectural parameters.
23
 
24
  + **Type:** Causal Language Model with Vision Encoder
25
  + **Training Stage:** Post-training
 
40
  + **Context Length:** 262,144 tokens natively
41
 
42
  ## Benchmark Results
43
+ The complexity of QwenPaw's context engineering and tool usage poses heightened challenges for model evaluation. To address this, we have developed a dedicated benchmark tailored to the QwenPaw environment. This benchmark systematically evaluates model performance across five high-frequency usage scenarios, covering key operational dimensions.
44
 
45
+ Results indicate that QwenPaw-Flash delivers substantial improvements across multiple task categories, achieving performance comparable to leading flagship models—all while maintaining significantly lower resource requirements.
46
 
47
  <img src="https://img.alicdn.com/imgextra/i2/O1CN01uQsLX61XbwkjLtHuP_!!6000000002943-2-tps-1264-888.png" width="632" title="" crop="0,0,1,1" id="ufe625d3c" class="ne-image">
48
 
49
+ Figure 1: QwenPaw-Flash-9B compared with other models.
50
 
51
  <img src="https://img.alicdn.com/imgextra/i1/O1CN01OKDCHQ1yuic00Qmyu_!!6000000006639-2-tps-1984-975.png" width="628" title="" crop="0,0,1,1" id="u15257ae6" class="ne-image">
52
 
53
+ Figure 2: QwenPaw-Flash-2B/4B/9B compared with their respective baseline models.
54
 
55
  ## Quickstart
56
+ ### <font style="color:rgb(31, 35, 40);">Serving QwenPaw-Flash</font>
57
+ QwenPaw-Flash<font style="color:rgb(31, 35, 40);"> can be served via APIs using popular inference frameworks. Below are example commands to launch OpenAI-compatible API servers for QwenPaw-Flash.</font>
58
 
59
  #### <font style="color:rgb(31, 35, 40);">vLLM</font>
60
+ vLLM is a high-throughput and memory-efficient inference and serving engine for LLMs. Since QwenPaw-Flash leverages the Qwen3.5 architecture, the latest vLLM version is required for optimal compatibility. You can install it in a fresh environment using:
61
 
62
  ```plain
63
  uv pip install vllm --torch-backend=auto --extra-index-url https://wheels.vllm.ai/nightly
 
83
 
84
 
85
 
86
+ ### Using QwenPaw-Flash via Chat Completions API
87
+ Once the server is running, you can access QwenPaw-Flash via standard HTTP requests or OpenAI-compatible SDKs.
88
 
89
  #### <font style="color:rgb(31, 35, 40);">Prerequisites</font>
90
  Ensure the OpenAI Python SDK is installed and your environment variables are configured:
 
108
  client = OpenAI()
109
 
110
  messages = [
111
+ {"role": "user", "content": "Hello, QwenPaw!"},
112
  ]
113
 
114
  chat_response = client.chat.completions.create(
 
126
  ```
127
 
128
  ## Contact Us
129
+ QwenPaw-Flash is developed by the AgentScope Team. If you would like to leave us a message, feel free to get in touch through the channels below.
130
  | [Discord](https://discord.gg/eYMpfnkG8h) | [X (Twitter)](https://x.com/agentscope_ai) | [DingTalk](https://qr.dingtalk.com/action/joingroup?code=v1,k1,OmDlBXpjW+I2vWjKDsjvI9dhcXjGZi3bQiojOq3dlDw=&_dt_no_comment=1&origin=11) |
131
  | ------------------------------------------------------------ | ------------------------------------------------------------ | ------------------------------------------------------------ |
132
  | [<img src="https://gw.alicdn.com/imgextra/i1/O1CN01hhD1mu1Dd3BWVUvxN_!!6000000000238-2-tps-400-400.png" width="80" height="80" alt="Discord">](https://discord.gg/eYMpfnkG8h) | [<img src="https://img.alicdn.com/imgextra/i4/O1CN01c0GOsa1UTkoxAGVvZ_!!6000000002519-2-tps-225-225.png" width="80" height="80" alt="X">](https://x.com/agentscope_ai) | [<img src="https://img.alicdn.com/imgextra/i2/O1CN01vCWI8a1skHtLGXEMQ_!!6000000005804-2-tps-458-460.png" width="80" height="80" alt="DingTalk">](https://qr.dingtalk.com/action/joingroup?code=v1,k1,OmDlBXpjW+I2vWjKDsjvI9dhcXjGZi3bQiojOq3dlDw=&_dt_no_comment=1&origin=11) |