Instructions to use fableforge-ai/FableForge-14B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use fableforge-ai/FableForge-14B with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="fableforge-ai/FableForge-14B") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("fableforge-ai/FableForge-14B") model = AutoModelForCausalLM.from_pretrained("fableforge-ai/FableForge-14B", device_map="auto") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use fableforge-ai/FableForge-14B with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "fableforge-ai/FableForge-14B" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "fableforge-ai/FableForge-14B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/fableforge-ai/FableForge-14B
- SGLang
How to use fableforge-ai/FableForge-14B with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "fableforge-ai/FableForge-14B" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "fableforge-ai/FableForge-14B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "fableforge-ai/FableForge-14B" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "fableforge-ai/FableForge-14B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use fableforge-ai/FableForge-14B with Docker Model Runner:
docker model run hf.co/fableforge-ai/FableForge-14B
Viral card: model-tree metadata, quant table, Ollama-from-source, demo funnel
Browse files
README.md
CHANGED
|
@@ -2,63 +2,56 @@
|
|
| 2 |
license: apache-2.0
|
| 3 |
language:
|
| 4 |
- en
|
| 5 |
-
pipeline_tag: text-generation
|
| 6 |
library_name: transformers
|
|
|
|
|
|
|
|
|
|
| 7 |
tags:
|
|
|
|
| 8 |
- fableforge
|
| 9 |
-
-
|
| 10 |
-
- qwen3
|
| 11 |
-
- 14b
|
| 12 |
-
- gguf
|
| 13 |
-
- domain-specialist
|
| 14 |
- reasoning
|
| 15 |
-
-
|
| 16 |
-
- conversational
|
| 17 |
-
base_model: Qwen/Qwen3-14B
|
| 18 |
-
base_model_relation: finetune
|
| 19 |
-
widget:
|
| 20 |
-
- text: "Explain the differences between TCP and UDP with examples."
|
| 21 |
-
example_title: "Networking"
|
| 22 |
---
|
| 23 |
|
| 24 |
# FableForge-14B
|
| 25 |
|
| 26 |
-
**
|
| 27 |
|
| 28 |
-
|
| 29 |
|
| 30 |
-
|
| 31 |
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
|
|
|
|
|
|
|
| 36 |
```
|
| 37 |
|
| 38 |
-
|
| 39 |
|
| 40 |
-
|
| 41 |
-
- Multi-domain expertise spanning coding, security, medical, legal, finance, science
|
| 42 |
-
- 14B parameters for complex reasoning
|
| 43 |
|
| 44 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 45 |
|
| 46 |
-
|
| 47 |
-
|-----------|-------|
|
| 48 |
-
| Base Model | Qwen3-14B |
|
| 49 |
-
| Method | QLoRA |
|
| 50 |
-
| Precision | bfloat16 |
|
| 51 |
-
| License | Apache 2.0 |
|
| 52 |
|
| 53 |
-
|
| 54 |
|
| 55 |
-
|
| 56 |
-
|
| 57 |
-
|
| 58 |
-
|
| 59 |
-
|
| 60 |
-
| ReasonCritic-7B | 7B | Reasoning + uncensored |
|
| 61 |
|
| 62 |
-
|
| 63 |
|
| 64 |
-
|
|
|
|
| 2 |
license: apache-2.0
|
| 3 |
language:
|
| 4 |
- en
|
|
|
|
| 5 |
library_name: transformers
|
| 6 |
+
pipeline_tag: text-generation
|
| 7 |
+
base_model: Qwen/Qwen3-14B
|
| 8 |
+
base_model_relation: finetune
|
| 9 |
tags:
|
| 10 |
+
- agent
|
| 11 |
- fableforge
|
| 12 |
+
- generalist
|
|
|
|
|
|
|
|
|
|
|
|
|
| 13 |
- reasoning
|
| 14 |
+
- text-generation
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 15 |
---
|
| 16 |
|
| 17 |
# FableForge-14B
|
| 18 |
|
| 19 |
+
> **FableForge 14B β the flagship generalist of the FableForge family.**
|
| 20 |
|
| 21 |
+
[](https://huggingface.co/fableforge-ai/FableForge-14B) [](https://huggingface.co/spaces/fableforge-ai/fableforge-nexus)
|
| 22 |
|
| 23 |
+
Base model: [Qwen/Qwen3-14B](https://huggingface.co/Qwen/Qwen3-14B) Β· Part of the **FableForge** ecosystem.
|
| 24 |
|
| 25 |
+
---
|
| 26 |
+
|
| 27 |
+
## β‘ Run it now β Ollama (GGUF build)
|
| 28 |
+
|
| 29 |
+
```bash
|
| 30 |
+
ollama run hf.co/fableforge-ai/FableForge-14B:Q4_K_M
|
| 31 |
```
|
| 32 |
|
| 33 |
+
π¦ **GGUF quants:** [fableforge-ai/FableForge-14B](https://huggingface.co/fableforge-ai/FableForge-14B)
|
| 34 |
|
| 35 |
+
## π§ Prompt format (ChatML)
|
|
|
|
|
|
|
| 36 |
|
| 37 |
+
```
|
| 38 |
+
<|im_start|>system
|
| 39 |
+
{system_prompt}<|im_end|>
|
| 40 |
+
<|im_start|>user
|
| 41 |
+
{prompt}<|im_end|>
|
| 42 |
+
<|im_start|>assistant
|
| 43 |
+
```
|
| 44 |
|
| 45 |
+
## π See it live β the FableForge demos
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 46 |
|
| 47 |
+
This family powers a galaxy of free, interactive HF Spaces:
|
| 48 |
|
| 49 |
+
- π§ [FableForge Nexus](https://huggingface.co/spaces/fableforge-ai/fableforge-nexus)
|
| 50 |
+
- πΊ [Infinite NPC](https://huggingface.co/spaces/fableforge-ai/infinite-npc)
|
| 51 |
+
- π [Dual-GM](https://huggingface.co/spaces/King3Djbl/dual-gm-simulator)
|
| 52 |
+
- π» [ShellWhisperer](https://huggingface.co/spaces/King3Djbl/shellwhisperer-terminal)
|
| 53 |
+
- π» [Ghost Writer](https://huggingface.co/spaces/fableforge-ai/ghost-writer)
|
|
|
|
| 54 |
|
| 55 |
+
---
|
| 56 |
|
| 57 |
+
*β Like & share β it helps people find the source instead of a mirror.*
|