5 Downloads Updated 1 month ago
ollama run sriramcharan126/promptmax
A locally fine-tuned language model that transforms weak, vague requests into detailed, well-structured, world-class prompts.
Example:
Input: write something about dogs
Output: Let's write a detailed guide on dog care! First, provide a
comprehensive overview of essential dog care topics like nutrition,
exercise, grooming, and common health issues. Then, explain each topic in
detail, including specific recommendations for different breeds and
situations. Finally, include tips for building a strong bond with your dog.
Make sure to use clear and informative language suitable for beginners.
q4_K_M (~2GB) for fast local inference
via OllamaDownload from ollama.com/download — takes about a minute, no configuration needed.
ollama pull sriramcharan126/promptmax
ollama cp sriramcharan126/promptmax promptmax
(The second command just gives it a short local nickname so you can type
promptmax instead of the full sriramcharan126/promptmax every time.)
ollama run promptmax
Type a weak/vague prompt, get back an improved one. Type /bye to exit.
Ollama also runs a local API automatically once installed:
import requests
response = requests.post("http://localhost:11434/api/generate", json={
"model": "promptmax",
"prompt": "write something about dogs",
"stream": False,
})
print(response.json()["response"])
This model is one output of an 8-phase local ML pipeline (dataset
engineering → conversion → merging → preparation → training → evaluation →
inference), fully documented in the main project’s README.md. Summary of
the path from raw data to this model:
q4_K_M via Ollama.| Problem | Fix |
|---|---|
ollama run promptmax says model not found |
Run ollama pull sriramcharan126/promptmax first, then ollama cp sriramcharan126/promptmax promptmax |
| Response seems cut off | The model has a max response length; ask it to continue, or ask for a shorter version |
| Want to remove it | ollama rm promptmax |
| Want to check what’s installed | ollama list |