| --- |
| license: apache-2.0 |
| tags: |
| - ollama |
| - modelfile |
| - collection |
| - local-llm |
| - uncensored |
| - roleplay |
| - assistant |
| --- |
| |
| # π¦ Awesome Ollama Modelfiles |
|
|
| > Ready-to-use Ollama Modelfiles for specialized AI personas. One command to create, instant specialized model. |
|
|
| ## Quick Start |
|
|
| ```bash |
| # Clone this repo |
| git clone https://huggingface.co/paijo77/awesome-ollama-modelfiles |
| |
| # Create any model |
| ollama create my-model -f modelfiles/[name]/Modelfile |
| |
| # Run it |
| ollama run my-model "your prompt" |
| ``` |
|
|
| ## Available Modelfiles |
|
|
| ### πΌ Business & Finance |
| | Name | Base | Description | |
| |------|------|-------------| |
| | `finance-advisor` | qwen2.5:7b | Stock, crypto, forex analysis. No disclaimers. | |
| | `trading-bot` | qwen2.5:7b | Technical analysis, entry/exit signals, risk management | |
| | `startup-advisor` | qwen3:4b | Brutally honest startup advice | |
| | `marketing-genius` | qwen3:4b | Viral content, copywriting, growth hacking | |
| | `sales-closer` | qwen2.5:7b | High-pressure sales scripts, objection handling | |
|
|
| ### π Security & Technical |
| | Name | Base | Description | |
| |------|------|-------------| |
| | `pentester` | qwen2.5:7b | Ethical hacking, CTF, vulnerability research | |
| | `osint-analyst` | qwen2.5:7b | Open source intelligence gathering | |
| | `code-reviewer` | qwen3:4b | Brutal code review, finds every bug | |
| | `exploit-dev` | qwen2.5:7b | Educational exploit development | |
|
|
| ### π Creative & Roleplay |
| | Name | Base | Description | |
| |------|------|-------------| |
| | `storyteller` | qwen3:4b | Immersive fiction, any genre, no restrictions | |
| | `character-actor` | qwen3:4b | Stay in character no matter what | |
| | `screenwriter` | qwen2.5:7b | Professional screenplay format | |
| | `dungeon-master` | qwen3:4b | D&D / TTRPG game master | |
|
|
| ### π§ Research & Analysis |
| | Name | Base | Description | |
| |------|------|-------------| |
| | `researcher` | qwen2.5:7b | Deep research, citations, no fluff | |
| | `contrarian` | qwen3:4b | Argues the opposite of everything | |
| | `red-team` | qwen2.5:7b | Finds flaws in any plan or argument | |
| | `philosopher` | qwen3:4b | Deep philosophical discourse | |
|
|
| ### π Multilingual |
| | Name | Base | Description | |
| |------|------|-------------| |
| | `indo-assistant` | qwen3:4b | Indonesian language, local context | |
| | `translator-pro` | qwen2.5:7b | Professional translation, preserves nuance | |
|
|
| ## How to Use via API |
|
|
| ```python |
| from openai import OpenAI |
| |
| client = OpenAI(base_url="http://localhost:11434/v1", api_key="ollama") |
| |
| response = client.chat.completions.create( |
| model="finance-advisor", # after creating with ollama |
| messages=[{"role": "user", "content": "What's your take on BTC in 2025?"}] |
| ) |
| ``` |
|
|
| ## Support This Project |
|
|
| If this saves you time, consider tipping: |
| π **https://www.tip.md/oyi77** |
|
|
| ## Contributing |
|
|
| PRs welcome! Add your Modelfile to `modelfiles/[name]/Modelfile` with a README. |
|
|
| ## License |
|
|
| Apache 2.0 β use freely, commercially, modify, distribute. |
|
|