File size: 1,340 Bytes
51da8e2 0a9da78 51da8e2 0a9da78 51da8e2 2e3890e cc8fc4e 51da8e2 cc8fc4e 51da8e2 cc8fc4e 51da8e2 cc8fc4e 0a9da78 cc8fc4e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
---
tags:
- bittensor
- subnet-20
- agent
- function-calling
- json-output
- mistral
- conversational
license: mit
language:
- en
base_model: mistralai/Mistral-7B-v0.1
pipeline_tag: text-generation
widget:
- example_title: Weather Example
messages:
- role: user
content: "What is the weather in Jakarta tomorrow?"
output:
text: '{"name": "get_weather", "arguments": {"location": "Jakarta", "unit": "celsius"}}'
- example_title: Flight Booking
messages:
- role: user
content: "Book me a flight to Bali tomorrow morning"
output:
text: '{"name": "book_flight", "arguments": {"destination": "Bali", "date": "2025-09-04", "time_pref": "morning"}}'
---
# ๐ lia21/bitagent โ Fine-tuned Zephyr/Mistral-7B for **Bittensor Subnet 20 (BitAgent)**
This model is fine-tuned for **function-calling** and **structured reasoning** inside **Subnet 20 (BitAgent)**.
It is optimized to produce **valid JSON outputs** required by validators.
---
## ๐ง Use Case
- Works as an **agent LLM** in the BitAgent subnet
- Produces **structured JSON-only outputs** (not free text)
- Supports **function-calling style outputs** with arguments
---
## ๐ Function Calling Examples
**Weather Query**
```json
{"name": "get_weather", "arguments": {"location": "Jakarta", "unit": "celsius"}}
|