3morixd commited on
Commit
2ba48ee
·
verified ·
1 Parent(s): ee7c0e4

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +54 -10
README.md CHANGED
@@ -1,17 +1,61 @@
1
  ---
2
- license: apache-2.0
3
- tags: [dispatch-ai, mobile, function-calling, quantized, gguf, phone-farm-tested, on-device, edge-ai]
 
 
 
 
 
 
 
 
4
  pipeline_tag: text-generation
5
- language: [en]
6
  ---
7
 
8
- # Llama 3.2 3B Function Call — Mobile
9
 
10
- **Dispatch AI** — Tool use and function calling on your phone. The model can invoke tools.
11
 
12
- | Metric | Value |
13
- |--------|-------|
14
- | Generation | 12.4 t/s |
15
- | Size | ~2.1 GB |
16
 
17
- **Dispatch AI (FZE)** Sharjah, UAE | License 10818
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: llama3.2
3
+ language:
4
+ - en
5
+ library_name: transformers
6
+ tags:
7
+ - mobile
8
+ - on-device
9
+ - quantized
10
+ - gguf
11
+ - dispatchai
12
  pipeline_tag: text-generation
 
13
  ---
14
 
15
+ # Llama-3.2-3B-FunctionCall-mobile
16
 
17
+ ⚠️ **PARTIAL** — Verified June 2026.
18
 
19
+ ## Verification Results
 
 
 
20
 
21
+ | Prompt | Response | Correct? |
22
+ |--------|----------|----------|
23
+ | What is the capital of France? | "The capital of France is Paris." | ✅ |
24
+ | What is 2+2? Just the number. | "I'm sorry, but I don't have any information about 2." | ⚠️ |
25
+
26
+ **Chat format**: `llama-3`
27
+
28
+ ## Model Details
29
+
30
+ | Attribute | Value |
31
+ |-----------|-------|
32
+ | **Base Model** | meta-llama/Llama-3.2-3B-Instruct |
33
+ | **File Size** | 1926 MB |
34
+ | **Format** | GGUF |
35
+ | **Chat Format** | llama-3 |
36
+ | **CPU Speed** | 9.1 tokens/sec |
37
+ | **License** | llama3.2 |
38
+
39
+ ## Usage
40
+
41
+ ```python
42
+ from llama_cpp import Llama
43
+
44
+ llm = Llama(model_path="model.gguf", chat_format="llama-3", n_ctx=512, n_threads=4)
45
+ response = llm.create_chat_completion(
46
+ messages=[{"role": "user", "content": "What is the capital of France?"}],
47
+ max_tokens=50,
48
+ )
49
+ print(response["choices"][0]["message"]["content"])
50
+ ```
51
+
52
+ ### dispatchAI SDK
53
+ ```python
54
+ from dispatchai import load_model
55
+ model = load_model("Llama-3.2-3B-FunctionCall-mobile", backend="gguf")
56
+ print(model.chat("Hello!"))
57
+ ```
58
+
59
+ ## About dispatchAI
60
+
61
+ [dispatchAI](https://huggingface.co/dispatchAI) — Small. Mobile. Free. UAE-built.