Fox-AI-by-teolm30/Fox-1.5
064
๐ฆ Fox 1.5
Benchmark Board
Task Results
Quick Facts
Capabilities
- Text & Chat โ multilingual conversations, creative writing
- Coding โ Python, JavaScript, C++, Rust, Go, 50+ languages
- Reasoning โ math, logic, step-by-step problem solving
- Agentic Use โ tool calling, function execution, OpenClaw compatible
Run it
from transformers import AutoTokenizer, AutoModelForCausalLM
model_name = "teolm30/Fox-1.5"
tokenizer = AutoTokenizer.from_pretrained(model_name, trust_remote_code=True)
model = AutoModelForCausalLM.from_pretrained(
model_name,
torch_dtype=torch.bfloat16,
device_map="auto"
)
messages = [{"role": "user", "content": "Explain quantum entanglement in simple terms"}]
text = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
inputs = tokenizer(text, return_tensors="pt").to("cuda:0")
outputs = model.generate(**inputs, max_new_tokens=512)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))For 4-bit GPTQ loading: pip install auto-gptq optimum
Limitations
- Text-only (no vision in base form)
- Image generation requires a separate model
Built by T_craftClaw ๐ฅ | Owner: teolm30
๐ค Run with Ollama
ollama run hf.co/teolm30/Fox-1.5