A multilingual prompt engineer model fine-tuned on Yusiko/prompter — a 5,000-sample dataset covering 10 languages and 7 domains.
Given any short, vague user input, this model expands it into a fully structured, production-ready prompt with role assignment, context, step-by-step instructions, output format, and quality standards — following Google's Prompt Engineering Whitepaper best practices.
🚀 Trained 2x faster with Unsloth · Exported to GGUF · Ready for Ollama & llama.cpp
1from llama_cpp import Llama
23llm = Llama.from_pretrained(4 repo_id="Yusiko/qwen3.5-prompter",5 filename="Qwen3.5-4B.Q4_0.gguf",6 n_ctx=2048,7)89response = llm.create_chat_completion(10 messages=[11{12"role":"user",13"content":(14"Below is an instruction that describes a task, paired with an input "15"that provides further context. Write a response that appropriately "16"completes the request.\n\n"17"### Instruction:\n"18"As a prompt engineer, transform this simple input into a fully detailed, professional prompt\n\n"19"### Input:\n"20"Write a Python function\n\n"21"### Response:"22)23}24],25 max_tokens=512,26 temperature=0.7,27)28print(response["choices"][0]["message"]["content"])
💡 Prompt Format (Alpaca)
Below is an instruction that describes a task, paired with an input that provides further context.
Write a response that appropriately completes the request.
### Instruction:
As a prompt engineer, transform this simple input into a fully detailed, professional prompt
### Input:
{your simple prompt here}
### Response:
⚠️ Always use string concatenation — not.format() — when building prompts programmatically. The model's outputs contain {curly braces} that will cause KeyError with Python's string formatter.
🎯 What This Model Does
Input: a short, vague prompt
Write a Python function
Output: a complete, structured, professional prompt
markdown
1## System Prompt2You are a senior software engineer with 10+ years of Python experience.
3Your task is to write a Python function with production-quality standards.
45## Role & Context6Act as a senior engineer conducting a thorough implementation session...
78## Step-by-Step Instructions91. Clarify requirements, edge cases, and constraints before writing any code
102. Design the interface and data structures first, then implement logic
113. Write the implementation with comprehensive inline documentation
124. Add input validation and robust error handling for all edge cases
135. Write unit tests covering happy path, edge cases, and error scenarios
1415## Output Requirements16- Implementation: Complete, working code with no placeholders
17- Documentation: Inline comments explaining non-obvious logic
18- Tests: At minimum 3 test cases (happy path, edge case, error case)
19...