pierretokns commited on
Commit
643311b
·
verified ·
1 Parent(s): 773de15

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +39 -5
README.md CHANGED
@@ -9,7 +9,8 @@ tags:
9
  - browser-automation
10
  - lora
11
  - ccmcp
12
- base_model: mlx-community/Qwen2.5-Coder-0.5B-Instruct-4bit
 
13
  datasets:
14
  - custom
15
  pipeline_tag: text-generation
@@ -17,17 +18,22 @@ pipeline_tag: text-generation
17
 
18
  # qwen-0.5b-ccmcp-v1
19
 
20
- Qwen 0.5B trained for Claude Chrome MCP tool calling (500 iterations)
 
 
 
21
 
22
  ## Model Description
23
 
24
- Fine-tuned for MCP (Model Context Protocol) tool calling with the Claude Chrome extension. The model can generate tool calls for browser automation tasks.
25
 
26
  ## Training Details
27
 
28
- - **Base Model:** mlx-community/Qwen2.5-Coder-0.5B-Instruct-4bit
29
  - **Method:** LoRA fine-tuning on Apple Silicon (MLX)
30
  - **Dataset:** 1,782 MCP browser automation examples
 
 
31
  - **Naming Convention:** `{base}-{size}-ccmcp-{version}`
32
  - `ccmcp` = **C**laude **C**hrome **MCP**
33
 
@@ -35,6 +41,8 @@ Fine-tuned for MCP (Model Context Protocol) tool calling with the Claude Chrome
35
 
36
  - `adapters.safetensors` - LoRA adapter weights
37
  - `adapter_config.json` - LoRA configuration
 
 
38
 
39
  ## Usage
40
 
@@ -61,6 +69,32 @@ response = generate(model, tokenizer, prompt=prompt, max_tokens=150, sampler=sam
61
  print(response)
62
  ```
63
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
64
  ## MCP Tools
65
 
66
  The model was trained on 16 MCP browser automation tools:
@@ -70,4 +104,4 @@ read_console_messages, read_network_requests, shortcuts_list, shortcuts_execute
70
 
71
  ## License
72
 
73
- Apache 2.0
 
9
  - browser-automation
10
  - lora
11
  - ccmcp
12
+ - mlx
13
+ base_model: Qwen/Qwen2.5-Coder-0.5B-Instruct
14
  datasets:
15
  - custom
16
  pipeline_tag: text-generation
 
18
 
19
  # qwen-0.5b-ccmcp-v1
20
 
21
+ Qwen 0.5B trained for Claude Chrome MCP tool calling
22
+
23
+ > **Attribution:** Built with Qwen
24
+
25
 
26
  ## Model Description
27
 
28
+ Fine-tuned for MCP (Model Context Protocol) tool calling with the Claude Chrome extension. The model generates tool calls for browser automation tasks.
29
 
30
  ## Training Details
31
 
32
+ - **Base Model:** Qwen/Qwen2.5-Coder-0.5B-Instruct
33
  - **Method:** LoRA fine-tuning on Apple Silicon (MLX)
34
  - **Dataset:** 1,782 MCP browser automation examples
35
+ - **Validation Loss:** 0.083
36
+ - **Iterations:** 500
37
  - **Naming Convention:** `{base}-{size}-ccmcp-{version}`
38
  - `ccmcp` = **C**laude **C**hrome **MCP**
39
 
 
41
 
42
  - `adapters.safetensors` - LoRA adapter weights
43
  - `adapter_config.json` - LoRA configuration
44
+ - `qwen-0.5b-ccmcp-v1-f16.gguf` - GGUF F16 format for llama.cpp/Ollama
45
+ - `checkpoints/` - Training checkpoints
46
 
47
  ## Usage
48
 
 
69
  print(response)
70
  ```
71
 
72
+ ### With Ollama
73
+
74
+ ```bash
75
+ # Download GGUF from this repo
76
+ # Create Modelfile:
77
+ cat > Modelfile << 'EOF'
78
+ FROM ./qwen-0.5b-ccmcp-v1-f16.gguf
79
+ PARAMETER num_ctx 8192
80
+ PARAMETER temperature 0.1
81
+ SYSTEM "You are a browser automation assistant with MCP tools."
82
+ EOF
83
+
84
+ # Create and run
85
+ ollama create qwen-0.5b-ccmcp-v1 -f Modelfile
86
+ ollama run qwen-0.5b-ccmcp-v1 "Go to google.com"
87
+ ```
88
+
89
+ ### With Claude Code + Ollama
90
+
91
+ ```bash
92
+ ANTHROPIC_BASE_URL=http://localhost:11434 \
93
+ ANTHROPIC_AUTH_TOKEN=ollama \
94
+ ANTHROPIC_API_KEY=ollama \
95
+ claude --model qwen-0.5b-ccmcp-v1
96
+ ```
97
+
98
  ## MCP Tools
99
 
100
  The model was trained on 16 MCP browser automation tools:
 
104
 
105
  ## License
106
 
107
+ This model is licensed under the [Apache 2.0 License](https://www.apache.org/licenses/LICENSE-2.0).