Text Generation
LiteRT-LM
English
custom
hermes-edge
mobile-ai
on-device
ios
iphone-16
apple-neural-engine
deepseek
dspark
speculative-decoding
hermes-agent
tool-calling
raven-ecosystem
Instructions to use bclermo/hermes-edge with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- LiteRT-LM
How to use bclermo/hermes-edge with LiteRT-LM:
# LiteRT-LM runs on various platforms (Android, iOS, Windows, Linux, macOS, IoT, Web/WASM) # and supports many APIs (C++, Python, Kotlin, Swift, JavaScript, Flutter). # For platform-specific integration guides, please refer to the official developer website: # https://ai.google.dev/edge/litert-lm # To try LiteRT-LM, the easiest way is to use our CLI tool. # 1. Install the LiteRT-LM CLI tool: pip install litert-lm # 2. Download and run this model locally: # See: https://ai.google.dev/edge/litert-lm/cli litert-lm run \ --from-huggingface-repo=bclermo/hermes-edge \ model.litertlm \ --prompt="Write me a poem"
- Notebooks
- Google Colab
- Kaggle
| {"messages": [{"role": "user", "content": "What is 47 * 89?"}], "tools": [{"name": "calculator", "description": "Evaluate an arithmetic expression.", "parameters": {"type": "object", "properties": {"expression": {"type": "string"}}, "required": ["expression"]}}], "expected": {"name": "calculator", "arguments": {"expression": "47*89"}}, "expected_output": "<tool_call>{\"name\": \"calculator\", \"arguments\": {\"expression\": \"47*89\"}}</tool_call>"} | |
| {"messages": [{"role": "user", "content": "What's the square root of 1764?"}], "tools": [{"name": "calculator", "description": "Evaluate an arithmetic expression.", "parameters": {"type": "object", "properties": {"expression": {"type": "string"}}, "required": ["expression"]}}], "expected": {"name": "calculator", "arguments": {"expression": "sqrt(1764)"}}, "expected_output": "<tool_call>{\"name\": \"calculator\", \"arguments\": {\"expression\": \"sqrt(1764)\"}}</tool_call>"} | |
| {"messages": [{"role": "user", "content": "Who won the 2022 FIFA World Cup?"}], "tools": [{"name": "web_search", "description": "Search the web.", "parameters": {"type": "object", "properties": {"query": {"type": "string"}}, "required": ["query"]}}], "expected": {"name": "web_search", "arguments": {"query": "2022 FIFA World Cup winner"}}, "expected_output": "<tool_call>{\"name\": \"web_search\", \"arguments\": {\"query\": \"2022 FIFA World Cup winner\"}}</tool_call>"} | |
| {"messages": [{"role": "user", "content": "Remember that my flight is on Tuesday."}], "tools": [{"name": "memory", "description": "Persist key/value notes.", "parameters": {"type": "object", "properties": {"action": {"type": "string"}, "key": {"type": "string"}, "value": {"type": "string"}}, "required": ["action"]}}], "expected": {"name": "memory", "arguments": {"action": "remember", "key": "flight", "value": "Tuesday"}}, "expected_output": "<tool_call>{\"name\": \"memory\", \"arguments\": {\"action\": \"remember\", \"key\": \"flight\", \"value\": \"Tuesday\"}}</tool_call>"} | |
| {"messages": [{"role": "user", "content": "Set a 5-minute timer for my tea."}], "tools": [{"name": "timer", "description": "Set timers and stopwatches.", "parameters": {"type": "object", "properties": {"action": {"type": "string"}, "seconds": {"type": "number"}, "label": {"type": "string"}}, "required": ["action"]}}], "expected": {"name": "timer", "arguments": {"action": "set_timer", "seconds": 300, "label": "tea"}}, "expected_output": "<tool_call>{\"name\": \"timer\", \"arguments\": {\"action\": \"set_timer\", \"seconds\": 300, \"label\": \"tea\"}}</tool_call>"} | |
| {"messages": [{"role": "user", "content": "What is 1000 divided by 8?"}], "tools": [{"name": "calculator", "description": "Evaluate an arithmetic expression.", "parameters": {"type": "object", "properties": {"expression": {"type": "string"}}, "required": ["expression"]}}], "expected": {"name": "calculator", "arguments": {"expression": "1000/8"}}, "expected_output": "<tool_call>{\"name\": \"calculator\", \"arguments\": {\"expression\": \"1000/8\"}}</tool_call>"} | |
| {"messages": [{"role": "user", "content": "Search for the tallest mountain in the world."}], "tools": [{"name": "web_search", "description": "Search the web.", "parameters": {"type": "object", "properties": {"query": {"type": "string"}}, "required": ["query"]}}], "expected": {"name": "web_search", "arguments": {"query": "tallest mountain in the world"}}, "expected_output": "<tool_call>{\"name\": \"web_search\", \"arguments\": {\"query\": \"tallest mountain in the world\"}}</tool_call>"} | |
| {"messages": [{"role": "user", "content": "What did I tell you about my flight?"}], "tools": [{"name": "memory", "description": "Persist key/value notes.", "parameters": {"type": "object", "properties": {"action": {"type": "string"}, "key": {"type": "string"}, "value": {"type": "string"}}, "required": ["action"]}}], "expected": {"name": "memory", "arguments": {"action": "recall", "key": "flight"}}, "expected_output": "<tool_call>{\"name\": \"memory\", \"arguments\": {\"action\": \"recall\", \"key\": \"flight\"}}</tool_call>"} | |
| {"messages": [{"role": "user", "content": "How long has it been since I started my workout stopwatch?"}], "tools": [{"name": "timer", "description": "Set timers and stopwatches.", "parameters": {"type": "object", "properties": {"action": {"type": "string"}, "label": {"type": "string"}}, "required": ["action"]}}], "expected": {"name": "timer", "arguments": {"action": "stop_stopwatch", "label": "workout"}}, "expected_output": "<tool_call>{\"name\": \"timer\", \"arguments\": {\"action\": \"stop_stopwatch\", \"label\": \"workout\"}}</tool_call>"} | |
| {"messages": [{"role": "user", "content": "Compute 2 to the power of 16."}], "tools": [{"name": "calculator", "description": "Evaluate an arithmetic expression.", "parameters": {"type": "object", "properties": {"expression": {"type": "string"}}, "required": ["expression"]}}], "expected": {"name": "calculator", "arguments": {"expression": "2^16"}}, "expected_output": "<tool_call>{\"name\": \"calculator\", \"arguments\": {\"expression\": \"2^16\"}}</tool_call>"} | |