Views
No views yet
{"action": "tool_name", "param1": "value1", "param2": "value2"}1{"action": "exec", "command": "ls -la"}
2{"action": "read", "path": "/home/user/README.md"}
3{"action": "write", "path": "/home/user/test.txt", "content": "Hello World"}
4{"action": "web_search", "query": "python tutorials"}
5{"action": "weather", "location": "Athens"}
6{"action": "cron", "action": "list"}
7{"action": "session_status"}1# Create the model
2ollama create fox1.2-openclaw -f Modelfile
3
4# Run it
5ollama run fox1.2-openclaw "list files in current directory"1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model = AutoModelForCausalLM.from_pretrained("teolm30/fox1.2-openclaw")
4tokenizer = AutoTokenizer.from_pretrained("teolm30/fox1.2-openclaw")
5
6# Generate tool call
7inputs = tokenizer("List all files", return_tensors="pt")
8outputs = model.generate(**inputs, max_new_tokens=256)
9print(tokenizer.decode(outputs[0]))1# Download
2huggingface-cli download teolm30/fox1.2-openclaw
3
4# Or use curl
5curl -L -o fox1.2-openclaw.gguf https://huggingface.co/teolm30/fox1.2-opencloak/resolve/main/fox1.2-openclaw.ggufmodels.json:1{
2 "id": "fox1.2-openclaw:latest",
3 "name": "Fox1.2 OpenClaw",
4 "reasoning": false,
5 "input": ["text"],
6 "contextWindow": 32768,
7 "maxTokens": 4096,
8 "api": "ollama"
9}openclaw gateway restartollama run hf.co/teolm30/fox1.2