GraySoft
Projects Models About FAQ Contact Download guIDE →

manojb/qwen3-4b-toolcalling-gguf-codex - Free GGUF Download is indexed on GraySoft with repository links, GGUF quant files, and Hugging Face metadata. This page helps you pick a local model for guIDE or other runtimes. See related models in the same shard below.

Model Intelligence Sheet

manojb/qwen3-4b-toolcalling-gguf-codex overview

ollama create qwen3:toolcall -f ModelFile ollama run qwen3:toolcall python # Ask: "Get weather data for New York and format it as JSON" # Model automatically calls weather API with proper parameters python # Ask: "Analyze this CSV file and create a visualization" # Model selects appropriate tools: pandas, matplotlib, etc. python # Ask: "Fetch stock data, calculate moving averages, and email me the results" # Model orchestrates multiple function calls seamlessly

safetensorsggufqwen3function-callingtool-callingcodexlocal-llm6gb-vramollamacode-assistantapi-toolsopenai-alternativetext-generationconversationalendataset:Salesforce/xlam-function-calling-60kbase_model:Qwen/Qwen3-4B-Instruct-2507base_model:quantized:Qwen/Qwen3-4B-Instruct-2507license:mitendpoints_compatibleregion:us
manojb/qwen3-4b-toolcalling-gguf-codex visual
Downloads
6,753
Likes
50
Pipeline
text-generation
Library
Visibility
Public
Access
Open

Repository Files & Downloads

1 files detected
Direct downloads for all repository files
FileTypeQuantizationSizeLink
Qwen3-4B-Function-Calling-Pro.gguf GGUF 3.99 GB Download

Model Details Live

Model Slug
manojb/qwen3-4b-toolcalling-gguf-codex
Author
Manojb
Pipeline Task
text-generation
Library
Created
2025-09-21
Last Modified
2025-09-21
Gated
No
Private
No
HF SHA
0e263f7b6c488d212829fe06274c19aed28a83c7
License
mit
Language
en
Base Model
Qwen/Qwen3-4B-Instruct-2507

Metadata Inspector

Normalized metadata (stored in metadata_json)
{
  "metadata": {},
  "card_data": {
    "license": "mit",
    "datasets": [
      "Salesforce/xlam-function-calling-60k"
    ],
    "language": [
      "en"
    ],
    "base_model": [
      "Qwen/Qwen3-4B-Instruct-2507"
    ],
    "pipeline_tag": "text-generation",
    "quantized_by": "Manojb",
    "tags": [
      "function-calling",
      "tool-calling",
      "codex",
      "local-llm",
      "gguf",
      "6gb-vram",
      "ollama",
      "code-assistant",
      "api-tools",
      "openai-alternative"
    ],
    "frontmatter": {
      "license": "mit",
      "datasets": [
        "Salesforce/xlam-function-calling-60k"
      ],
      "language": [
        "en"
      ],
      "base_model": [
        "Qwen/Qwen3-4B-Instruct-2507"
      ],
      "pipeline_tag": "text-generation",
      "quantized_by": "Manojb",
      "tags": [
        "function-calling",
        "tool-calling",
        "codex",
        "local-llm",
        "gguf",
        "6gb-vram",
        "ollama",
        "code-assistant",
        "api-tools",
        "openai-alternative"
      ]
    },
    "hero_image_url": "",
    "summary": "ollama create qwen3:toolcall -f ModelFile ollama run qwen3:toolcall `` ### 🔧 API Integration Made Easy `python # Ask: \"Get weather data for New York and format it as JSON\" # Model automatically calls weather API with proper parameters ` ### 🛠️ Tool Selection Intelligence `python # Ask: \"Analyze this CSV file and create a visualization\" # Model selects appropriate tools: pandas, matplotlib, etc. ` ### 📊 Multi-Step Workflows `python # Ask: \"Fetch stock data, calculate moving averages, and email me the results\" # Model orchestrates multiple function calls seamlessly ``",
    "quick_links": [],
    "benchmark_table_html": "",
    "readme_markdown": "---\nlicense: mit\ndatasets:\n- Salesforce/xlam-function-calling-60k\nlanguage:\n- en\nbase_model:\n- Qwen/Qwen3-4B-Instruct-2507\npipeline_tag: text-generation\nquantized_by: Manojb\ntags:\n- function-calling\n- tool-calling\n- codex\n- local-llm\n- gguf\n- 6gb-vram\n- ollama\n- code-assistant\n- api-tools\n- openai-alternative\n---\n\n## Specialized Qwen3 4B tool-calling\n\n- ✅ **Fine-tuned on 60K function calling examples**\n- ✅ **4B parameters** (sweet spot for local deployment)\n- ✅ **GGUF format** (optimized for CPU/GPU inference)\n- ✅ **3.99GB download** (fits on any modern system)\n- ✅ **Production-ready** with 0.518 training loss\n\n## One-Command Setup\n\n```bash\n# Download and run instantly\nollama create qwen3:toolcall -f ModelFile\nollama run qwen3:toolcall\n```\n\n\n### 🔧 API Integration Made Easy\n```python\n# Ask: \"Get weather data for New York and format it as JSON\"\n# Model automatically calls weather API with proper parameters\n```\n\n### 🛠️ Tool Selection Intelligence\n```python\n# Ask: \"Analyze this CSV file and create a visualization\"\n# Model selects appropriate tools: pandas, matplotlib, etc.\n```\n\n### 📊 Multi-Step Workflows\n```python\n# Ask: \"Fetch stock data, calculate moving averages, and email me the results\"\n# Model orchestrates multiple function calls seamlessly\n```\n\n## Specs\n\n- **Base Model**: Qwen3-4B-Instruct\n- **Fine-tuning**: LoRA on function calling dataset\n- **Format**: GGUF (optimized for local inference)\n- **Context Length**: 262K tokens\n- **Precision**: FP16 optimized\n- **Memory**: Gradient checkpointing enabled\n\n## Quick Start Examples\n\n### Basic Function Calling\n```python\n# Load with Ollama\nimport requests\n\nresponse = requests.post('http://localhost:11434/api/generate', json={\n    'model': 'qwen3:toolcall',\n    'prompt': 'Get the current weather in San Francisco and convert to Celsius',\n    'stream': False\n})\n\nprint(response.json()['response'])\n```\n\n### Advanced Tool Usage\n```python\n# The model understands complex tool orchestration\nprompt = \"\"\"\nI need to:\n1. Fetch data from the GitHub API\n2. Process the JSON response\n3. Create a visualization\n4. Save it as a PNG file\n\nWhat tools should I use and how?\n\"\"\"\n```\n\n- **Building AI agents** that need tool calling\n- **Creating local coding assistants**\n- **Learning function calling** without cloud dependencies\n- **Prototyping AI applications** on a budget\n- **Privacy-sensitive development** work\n\n## Why Choose This Over Alternatives\n\n| Feature | This Model | Cloud APIs | Other Local Models |\n|---------|------------|------------|-------------------|\n| **Cost** | Free after download | $0.01-0.10 per call | Often larger/heavier |\n| **Privacy** | 100% local | Data sent to servers | Varies |\n| **Speed** | Instant | Network dependent | Often slower |\n| **Reliability** | Always available | Service dependent | Depends on setup |\n| **Customization** | Full control | Limited | Varies |\n\n## System Requirements\n\n- **GPU**: 6GB+ VRAM (RTX 3060, RTX 4060, etc.)\n- **RAM**: 8GB+ system RAM\n- **Storage**: 5GB free space\n- **OS**: Windows, macOS, Linux\n\n## Benchmark Results\n\n- **Function Call Accuracy**: 94%+ on test set\n- **Parameter Extraction**: 96%+ accuracy\n- **Tool Selection**: 92%+ correct choices\n- **Response Quality**: Maintains conversational ability\n\n**PERFECT for developers who want:**\n- **Local AI coding assistant** (like Codex but private)\n- **Function calling without API costs**\n- **6GB VRAM compatibility** (runs on most gaming GPUs)\n- **Zero internet dependency** once downloaded\n- **Ollama integration** (one-command setup)\n\n```bibtex\n@model{Qwen3-4B-toolcalling-gguf-codex,\n  title={Qwen3-4B-toolcalling-gguf-codex: Local Function Calling},\n  author={Manojb},\n  year={2025},\n  url={https://huggingface.co/Manojb/Qwen3-4B-toolcalling-gguf-codex}\n}\n```\n\n## License\n\nApache 2.0 - Use freely for personal and commercial projects\n\n---\n\n\n*Built with ❤️ for the developer community*",
    "related_quantizations": []
  },
  "tags": [
    "safetensors",
    "gguf",
    "qwen3",
    "function-calling",
    "tool-calling",
    "codex",
    "local-llm",
    "6gb-vram",
    "ollama",
    "code-assistant",
    "api-tools",
    "openai-alternative",
    "text-generation",
    "conversational",
    "en",
    "dataset:Salesforce/xlam-function-calling-60k",
    "base_model:Qwen/Qwen3-4B-Instruct-2507",
    "base_model:quantized:Qwen/Qwen3-4B-Instruct-2507",
    "license:mit",
    "endpoints_compatible",
    "region:us"
  ],
  "likes": 50,
  "downloads": 6753,
  "gated": false,
  "private": false,
  "last_modified": "2025-09-21T19:56:55.000Z",
  "created_at": "2025-09-21T06:14:24.000Z",
  "pipeline_tag": "text-generation",
  "library_name": ""
}
Source payload excerpt (from Hugging Face API)
{
  "_id": "68cf97c0ae0ced61f8ecf48c",
  "id": "Manojb/Qwen3-4B-toolcalling-gguf-codex",
  "modelId": "Manojb/Qwen3-4B-toolcalling-gguf-codex",
  "sha": "0e263f7b6c488d212829fe06274c19aed28a83c7",
  "createdAt": "2025-09-21T06:14:24.000Z",
  "lastModified": "2025-09-21T19:56:55.000Z",
  "author": "Manojb",
  "downloads": 6753,
  "likes": 50,
  "gated": false,
  "private": false,
  "pipeline_tag": "text-generation",
  "library_name": "",
  "siblings_count": 15
}