Paijo commited on
Commit
0cf0c92
Β·
verified Β·
1 Parent(s): 64886dd

Initial release: 16 specialized Modelfiles

Browse files
Files changed (1) hide show
  1. README.md +95 -0
README.md ADDED
@@ -0,0 +1,95 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ tags:
4
+ - ollama
5
+ - modelfile
6
+ - collection
7
+ - local-llm
8
+ - uncensored
9
+ - roleplay
10
+ - assistant
11
+ ---
12
+
13
+ # πŸ¦™ Awesome Ollama Modelfiles
14
+
15
+ > Ready-to-use Ollama Modelfiles for specialized AI personas. One command to create, instant specialized model.
16
+
17
+ ## Quick Start
18
+
19
+ ```bash
20
+ # Clone this repo
21
+ git clone https://huggingface.co/paijo77/awesome-ollama-modelfiles
22
+
23
+ # Create any model
24
+ ollama create my-model -f modelfiles/[name]/Modelfile
25
+
26
+ # Run it
27
+ ollama run my-model "your prompt"
28
+ ```
29
+
30
+ ## Available Modelfiles
31
+
32
+ ### πŸ’Ό Business & Finance
33
+ | Name | Base | Description |
34
+ |------|------|-------------|
35
+ | `finance-advisor` | qwen2.5:7b | Stock, crypto, forex analysis. No disclaimers. |
36
+ | `trading-bot` | qwen2.5:7b | Technical analysis, entry/exit signals, risk management |
37
+ | `startup-advisor` | qwen3:4b | Brutally honest startup advice |
38
+ | `marketing-genius` | qwen3:4b | Viral content, copywriting, growth hacking |
39
+ | `sales-closer` | qwen2.5:7b | High-pressure sales scripts, objection handling |
40
+
41
+ ### πŸ” Security & Technical
42
+ | Name | Base | Description |
43
+ |------|------|-------------|
44
+ | `pentester` | qwen2.5:7b | Ethical hacking, CTF, vulnerability research |
45
+ | `osint-analyst` | qwen2.5:7b | Open source intelligence gathering |
46
+ | `code-reviewer` | qwen3:4b | Brutal code review, finds every bug |
47
+ | `exploit-dev` | qwen2.5:7b | Educational exploit development |
48
+
49
+ ### 🎭 Creative & Roleplay
50
+ | Name | Base | Description |
51
+ |------|------|-------------|
52
+ | `storyteller` | qwen3:4b | Immersive fiction, any genre, no restrictions |
53
+ | `character-actor` | qwen3:4b | Stay in character no matter what |
54
+ | `screenwriter` | qwen2.5:7b | Professional screenplay format |
55
+ | `dungeon-master` | qwen3:4b | D&D / TTRPG game master |
56
+
57
+ ### 🧠 Research & Analysis
58
+ | Name | Base | Description |
59
+ |------|------|-------------|
60
+ | `researcher` | qwen2.5:7b | Deep research, citations, no fluff |
61
+ | `contrarian` | qwen3:4b | Argues the opposite of everything |
62
+ | `red-team` | qwen2.5:7b | Finds flaws in any plan or argument |
63
+ | `philosopher` | qwen3:4b | Deep philosophical discourse |
64
+
65
+ ### 🌏 Multilingual
66
+ | Name | Base | Description |
67
+ |------|------|-------------|
68
+ | `indo-assistant` | qwen3:4b | Indonesian language, local context |
69
+ | `translator-pro` | qwen2.5:7b | Professional translation, preserves nuance |
70
+
71
+ ## How to Use via API
72
+
73
+ ```python
74
+ from openai import OpenAI
75
+
76
+ client = OpenAI(base_url="http://localhost:11434/v1", api_key="ollama")
77
+
78
+ response = client.chat.completions.create(
79
+ model="finance-advisor", # after creating with ollama
80
+ messages=[{"role": "user", "content": "What's your take on BTC in 2025?"}]
81
+ )
82
+ ```
83
+
84
+ ## Support This Project
85
+
86
+ If this saves you time, consider tipping:
87
+ πŸ‘‰ **https://www.tip.md/oyi77**
88
+
89
+ ## Contributing
90
+
91
+ PRs welcome! Add your Modelfile to `modelfiles/[name]/Modelfile` with a README.
92
+
93
+ ## License
94
+
95
+ Apache 2.0 β€” use freely, commercially, modify, distribute.