Prompts de interpretação de papéis e personas
Descubra como atribuir papéis ou personas específicos aos LLMs para orientar suas respostas e gerar resultados mais relevantes.
Prompts de interpretação de papéis e personas é uma aula grátis de Prompt Engineering & LLM Optimization for Developers no CoddyKit. Esta é a aula 1 de 4. Você pode ler a aula completa abaixo gratuitamente — depois pratica ao vivo no navegador com um editor de código integrado e um tutor de IA 24/7. Faz parte do caminho de aprendizado de Prompt Engineering & LLM Optimization for Developers, e seu progresso é sincronizado entre a web e o app CoddyKit. O curso de Prompt Engineering & LLM Optimization for Developers inclui 4 aulas no total.
Partes desta aula ainda não foram traduzidas e aparecem em inglês.
Intro: Role-Playing Prompts
Welcome to Role-Playing & Persona Prompts! This technique helps you guide Large Language Models (LLMs) to generate more specific and relevant outputs.
Think of it as giving the LLM a job description before it starts working on your request.
What are Persona Prompts?
A persona prompt assigns a specific identity, role, or character to an LLM. This can include:
- An expert (e.g., 'senior software engineer')
- A specific type of assistant (e.g., 'friendly travel agent')
- A fictional character (e.g., 'wise old wizard')
- A specific interface (e.g., 'Linux terminal')
By defining a persona, you influence the LLM's tone, style, and even its knowledge focus.
Why Use Persona Prompts?
Using personas offers several key advantages:
- Consistent Output: Ensures the LLM maintains a specific tone and style throughout the conversation.
- Targeted Knowledge: Helps the LLM focus on relevant information for the assigned role.
- Improved Relevance: Generates answers tailored to the perspective of the persona.
- Controlled Format: Can guide the LLM to output information in a specific structure.
Crafting a Role Statement
To assign a role, simply state it clearly at the beginning of your prompt. Use phrases like:
Act as a [role]...You are a [role]...Simulate a [role]...
Be explicit about the role and any key characteristics.
Example: The Expert Engineer
Here's how you might prompt an LLM to act as a senior software engineer. Notice how the role sets the context for the advice.
Act as a senior software engineer.
Explain the importance of code readability for junior developers in a simple way.Run: Expert Engineer Prompt
Let's see this in action! This Python snippet simulates sending a prompt to an LLM API. The key is the 'engineer_prompt' string.
import os
def get_llm_response(prompt_text):
# In a real app, this would be an actual API call (e.g., OpenAI, Anthropic)
print(f"--- Sending Prompt ---\n{prompt_text}\n--- LLM Response (simulated) ---")
if "senior software engineer" in prompt_text.lower():
return "As a senior software engineer, I'd say good variable names are key for readable code. Also, break down complex functions into smaller, focused units. It makes maintenance and collaboration much easier!"
else:
return "I processed your request."
def main():
engineer_prompt = (
"Act as a senior software engineer. "
"Explain the importance of clean code in a simple way."
)
print("Engineer's advice:")
print(get_llm_response(engineer_prompt))
if __name__ == "__main__":
main()Example: The Creative Storyteller
Personas aren't just for experts! You can also use them for creative tasks. Here, we'll ask the LLM to act as a storyteller.
You are a whimsical storyteller. Write a very short tale about a tiny robot who dreams of flying, using no more than 50 words.Combining Roles & Constraints
You can make persona prompts even more powerful by adding specific constraints or instructions. For example:
Act as a JSON API that returns user data. Only output JSON.You are a helpful coding assistant. Provide Python code examples only.Simulate a debugging console. Only respond with error messages and suggestions.
This ensures both the role and the desired output format are met.
Best Practices for Personas
To get the most out of persona prompts:
- Be Specific: A clear role is better than a vague one.
- Keep it Concise: Don't overload the role description.
- Test & Iterate: Experiment to see which roles work best for your task.
- Avoid Over-constraining: Give the LLM enough room to generate useful responses within the role.
Quick Check: Persona Power
You've learned about the power of persona prompts. Which of the following are key benefits of assigning a role to an LLM?
Recap: Mastering Personas
Great job! You've mastered the basics of Role-Playing & Persona Prompts.
- You learned how to assign a specific identity to an LLM.
- You saw how personas ensure consistent tone, focused knowledge, and relevant output.
- You practiced crafting clear role statements and combining them with constraints.
Next, we'll dive into Instruction Following & Constraints to further refine your LLM interactions!
Perguntas Frequentes
A aula “Prompts de interpretação de papéis e personas” é grátis?
Sim — o texto completo de “Prompts de interpretação de papéis e personas” é grátis para ler aqui na web. Para praticá-la interativamente (um editor de código integrado e um tutor de IA 24/7) e desbloquear o restante do curso de Prompt Engineering & LLM Optimization for Developers, atualize para CoddyKit PRO. O curso de Prompt Engineering & LLM Optimization for Developers inclui 4 aulas no total.
O que vou aprender em “Prompts de interpretação de papéis e personas”?
Descubra como atribuir papéis ou personas específicos aos LLMs para orientar suas respostas e gerar resultados mais relevantes. Você pratica Prompt Engineering & LLM Optimization for Developers com código prático que executa diretamente no navegador, e um tutor de IA 24/7 responde suas dúvidas enquanto trabalha na aula.
Preciso ter experiência prévia para começar Prompt Engineering & LLM Optimization for Developers?
Nenhuma experiência prévia é necessária. Prompt Engineering & LLM Optimization for Developers no CoddyKit é estruturado para alunos iniciantes até avançados, então você pode começar aqui ou desde o início e aprender no seu ritmo. Esta é a aula 1 de 4.
Quanto tempo leva a aula “Prompts de interpretação de papéis e personas”?
A maioria das aulas CoddyKit leva cerca de 5–10 minutos. Cada uma é compacta e interativa, então você faz progresso constante e retoma exatamente de onde parou entre web e app.
Posso escrever e executar código nesta aula de Prompt Engineering & LLM Optimization for Developers?
Sim. Cada aula de Prompt Engineering & LLM Optimization for Developers inclui um editor de código integrado, então você escreve e executa código real direto no navegador e recebe feedback de IA instantaneamente — nenhuma configuração local necessária.
Todas as aulas deste curso
- Prompts de interpretação de papéis e personas
- Seguimento de instruções e restrições
- Refinamento iterativo de prompts
- Delimitadores e Prompts Estruturados