Views
No views yet
Exported from a local Ollama installation and uploaded to the Hugging Face Hub by vorenthiclabs.
| Field | Value |
|---|---|
| Base model | claude |
| Finetuned model | vorenthos-architect-31b |
| Tag / variant | latest |
| Model type | Text Generation |
| Format | GGUF (llama.cpp-compatible) |
| Total size | 11.26 GB |
| Layers | 3 |
1ollama pull vorenthos-architect-31b
2ollama run vorenthos-architect-31b1from llama_cpp import Llama
2
3llm = Llama.from_pretrained(
4 repo_id="vorenthiclabs/vorenthos-architect-31b",
5 filename="*.gguf",
6)
7output = llm("Hello, who are you?", max_tokens=256)
8print(output["choices"][0]["text"])transformers + GGUF support1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3tokenizer = AutoTokenizer.from_pretrained("vorenthiclabs/vorenthos-architect-31b")
4model = AutoModelForCausalLM.from_pretrained("vorenthiclabs/vorenthos-architect-31b")| File | Description |
|---|---|
config.json | Ollama model configuration / metadata |
model-*.gguf | Quantised weights in GGUF format |
tokenizer.jinja | Chat template |
params.json | Generation parameters (temperature, top-p, …) |
system_prompt.txt | Default system prompt embedded in the model |