roneymatusp/british-educational-prompts
Viewer • Updated • 8.09k • 48 • 1
PauleanPrompt is a specialized prompt optimization model that converts any input (Portuguese, American English, etc.) into optimized British English educational prompts.
from ollama import Client
client = Client(
host="https://ollama.com",
headers={'Authorization': 'YOUR_API_KEY'}
)
response = client.chat(
model="gpt-oss:20b",
messages=[
{'role': 'system', 'content': SYSTEM_PROMPT},
{'role': 'user', 'content': "como fazer uma aula boa?"}
]
)
| Input | Output |
|---|---|
| "como fazer uma aula boa?" | "Create a comprehensive lesson plan for a Year 6 class..." |
| "teach math to kids" | "Design a Year 2 mathematics lesson plan..." |
| "avaliação para matemática" | "Develop a formative assessment for Year 8 pupils..." |
@misc{pauleanprompt2025,
author = {Roney Matus},
title = {PauleanPrompt: British Educational Prompt Optimizer},
year = {2025},
publisher = {HuggingFace},
url = {https://huggingface.co/roneymatusp/PauleanPrompt}
}