lia21 commited on
Commit
cc8fc4e
·
verified ·
1 Parent(s): 62e5f79

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +29 -10
README.md CHANGED
@@ -11,19 +11,38 @@ license: mit
11
  language:
12
  - en
13
  base_model: mistralai/Mistral-7B-v0.1
14
- datasets:
15
- - HuggingFaceH4/ultrachat_200k
16
- - HuggingFaceH4/ultrafeedback_binarized
17
  pipeline_tag: text-generation
 
 
 
 
 
 
 
 
 
 
 
 
 
18
  ---
19
 
20
- # lia21/bitagent — Zephyr-7B for **Bittensor Subnet 20 (BitAgent)**
21
 
22
- Fine-tuned version of **Mistral-7B** adapted for **function-calling** and **structured reasoning** inside **Subnet 20 (BitAgent)**.
23
- The model is optimized to produce **valid JSON outputs** of the form:
24
 
 
 
 
 
 
 
 
 
 
 
 
 
25
  ```json
26
- {
27
- "name": "<function_name>",
28
- "arguments": { "...": "..." }
29
- }
 
11
  language:
12
  - en
13
  base_model: mistralai/Mistral-7B-v0.1
 
 
 
14
  pipeline_tag: text-generation
15
+ widget:
16
+ - example_title: Weather Example
17
+ messages:
18
+ - role: user
19
+ content: "What is the weather in Jakarta tomorrow?"
20
+ output:
21
+ text: '{"name": "get_weather", "arguments": {"location": "Jakarta", "unit": "celsius"}}'
22
+ - example_title: Flight Booking
23
+ messages:
24
+ - role: user
25
+ content: "Book me a flight to Bali tomorrow morning"
26
+ output:
27
+ text: '{"name": "book_flight", "arguments": {"destination": "Bali", "date": "2025-09-04", "time_pref": "morning"}}'
28
  ---
29
 
30
+ # 🚀 lia21/bitagent — Fine-tuned Zephyr/Mistral-7B for **Bittensor Subnet 20 (BitAgent)**
31
 
32
+ This model is fine-tuned for **function-calling** and **structured reasoning** inside **Subnet 20 (BitAgent)**.
33
+ It is optimized to produce **valid JSON outputs** required by validators.
34
 
35
+ ---
36
+
37
+ ## 🧠 Use Case
38
+ - Works as an **agent LLM** in the BitAgent subnet
39
+ - Produces **structured JSON-only outputs** (not free text)
40
+ - Supports **function-calling style outputs** with arguments
41
+
42
+ ---
43
+
44
+ ## 📝 Function Calling Examples
45
+
46
+ **Weather Query**
47
  ```json
48
+ {"name": "get_weather", "arguments": {"location": "Jakarta", "unit": "celsius"}}