CoolFace
Apppublic

dispatchAI/function-calling-agent

sourceHugging Faceapache-2.0updated 3mo agoView on Hugging Face
0likes
README.md45 linesDownload Raw Back to root
1---2title: Function Calling Agent3emoji: ๐Ÿ”ง4colorFrom: blue5colorTo: indigo6sdk: gradio7sdk_version: "4.44.0"8app_file: app.py9pinned: false10license: apache-2.011tags:12  - function-calling13  - agent14  - mobile15  - on-device16  - mcp17  - dispatchai18models:19  - dispatchAI/Llama-3.2-1B-FunctionCall-mobile20---21 22# ๐Ÿ”ง dispatchAI Function Calling Agent23 24An on-device agent that parses natural language into structured function calls.25 26**Model:** Llama-3.2-1B-FunctionCall-mobile โ€” a 1B parameter model fine-tuned for function calling, quantized to Q4, designed for mobile.27 28## How It Works29 301. User types natural language (e.g., "Set an alarm for 7am")312. The 1B model parses it into a structured function call: `{"function": "set_alarm", "parameters": {"time": "07:00"}}`323. The function call can be executed on-device33 34## Available Functions35 36- `set_alarm(time, label)` โ€” Set an alarm37- `send_message(to, message)` โ€” Send a message38- `call_contact(contact)` โ€” Call a contact39- `search_web(query)` โ€” Search the web40- `open_app(app_name)` โ€” Open an app41- `set_timer(duration_minutes)` โ€” Set a timer42- `get_weather(location)` โ€” Get weather43 44๐Ÿš€ [dispatchAI](https://huggingface.co/dispatchAI) โ€” Small. Mobile. Free. UAE-built.45