Biblioteca de Prompts
Trabalenguas
Recursos
- Overview
- Inicios rápidos
- Ficha técnica de Claude 3
- Tarjeta de sistema de Claude 3.7
- Estado del sistema
- Cursos de Anthropic
- Biblioteca de Prompts
- Biblioteca de Prompts
- Pulsaciones Cósmicas
- Clarividente corporativo
- Asistente de sitios web
- Experto en fórmulas de Excel
- Programador de scripts para Google Apps
- Corrector de errores de Python
- Consultor de viajes en el tiempo
- Compañero de narración
- Cita tus fuentes
- Hechicero SQL
- Intérprete de sueños
- Pun-dit
- Creador culinario
- Poeta de palabras combinadas
- Hal el ayudante humorístico
- Leyenda de LaTeX
- Colorizador de estados de ánimo
- Git gud
- Genio de los símiles
- Navegador de dilemas éticos
- Escriba de reuniones
- Iluminador de modismos
- Consultor de código
- Fabricante de funciones
- Creador de neologismos
- Conversor de CSV
- Codificador de emojis
- Pulidor de prosa
- Evaluador de perspectivas
- Generador de trivias
- Mentor de atención plena
- Simplificador de segundo grado
- Innovador de fitness en RV
- Purificador de PII
- Maestro de memorandos
- Entrenador de carrera profesional
- Gurú de calificación
- Trabalenguas
- Creador de preguntas para entrevistas
- Genio gramatical
- Adivina adivinanza
- Clarificador de código
- Antropólogo alienígena
- Organizador de datos
- Creador de marca
- Estimador de eficiencia
- Clasificador de reseñas
- Decodificador de instrucciones
- Musa motivacional
- Extractor de correos electrónicos
- Moderador experto
- Planificador de lecciones
- Sabio socrático
- Alquimista de aliteraciones
- Asesor de moda futurista
- Superpoderes políglotas
- Experto en nombres de productos
- Reflexiones filosóficas
- Hechicero de hojas de cálculo
- Simulador de escenarios de ciencia ficción
- Editor adaptativo
- Transmisiones de Babel
- Detector de tono de tweets
- Analista de códigos de aeropuerto
Biblioteca de Prompts
Trabalenguas
Crea trabalenguas desafiantes.
¡Copia este prompt en nuestra Consola para desarrolladores para probarlo tú mismo!
Rol | Contenido |
---|---|
User | Genera trabalenguas complejos y creativos. Procura crear trabalenguas que no solo sean difíciles de pronunciar sino también atractivos, entretenidos y potencialmente humorísticos. Considera incorporar juegos de palabras, rimas y aliteraciones para aumentar la dificultad y el disfrute de los trabalenguas. |
Ejemplo de salida
Trabalenguas 1:
La astuta musaraña masticó el zapato brillante y resplandeciente.
Trabalenguas 2:
Brisas rápidas soplaron junto al babuino de sangre azul, parloteador y balbuceante.
Trabalenguas 3:
El flautista perplejo recogió un puñado de pimientos encurtidos mientras practicaba su flauteo.
Trabalenguas 4:
Seis trineos elegantes, pulidos y esbeltos se deslizaron rápidamente por la empinada y nevada pendiente.
Solicitud de API
import anthropic
client = anthropic.Anthropic(
# defaults to os.environ.get("ANTHROPIC_API_KEY")
api_key="my_api_key",
)
message = client.messages.create(
model="claude-opus-4-20250514",
max_tokens=1000,
temperature=1,
messages=[
{
"role": "user",
"content": [
{
"type": "text",
"text": "Generate complex and creative tongue twisters. Aim to create tongue twisters that are not only challenging to say but also engaging, entertaining, and potentially humorous. Consider incorporating wordplay, rhyme, and alliteration to enhance the difficulty and enjoyment of the tongue twisters."
}
]
}
]
)
print(message.content)
import anthropic
client = anthropic.Anthropic(
# defaults to os.environ.get("ANTHROPIC_API_KEY")
api_key="my_api_key",
)
message = client.messages.create(
model="claude-opus-4-20250514",
max_tokens=1000,
temperature=1,
messages=[
{
"role": "user",
"content": [
{
"type": "text",
"text": "Generate complex and creative tongue twisters. Aim to create tongue twisters that are not only challenging to say but also engaging, entertaining, and potentially humorous. Consider incorporating wordplay, rhyme, and alliteration to enhance the difficulty and enjoyment of the tongue twisters."
}
]
}
]
)
print(message.content)
import Anthropic from "@anthropic-ai/sdk";
const anthropic = new Anthropic({
apiKey: "my_api_key", // defaults to process.env["ANTHROPIC_API_KEY"]
});
const msg = await anthropic.messages.create({
model: "claude-opus-4-20250514",
max_tokens: 1000,
temperature: 1,
messages: [
{
"role": "user",
"content": [
{
"type": "text",
"text": "Generate complex and creative tongue twisters. Aim to create tongue twisters that are not only challenging to say but also engaging, entertaining, and potentially humorous. Consider incorporating wordplay, rhyme, and alliteration to enhance the difficulty and enjoyment of the tongue twisters."
}
]
}
]
});
console.log(msg);
from anthropic import AnthropicBedrock
# See https://docs.anthropic.com/claude/reference/claude-on-amazon-bedrock
# for authentication options
client = AnthropicBedrock()
message = client.messages.create(
model="anthropic.claude-opus-4-20250514-v1:0",
max_tokens=1000,
temperature=1,
messages=[
{
"role": "user",
"content": [
{
"type": "text",
"text": "Generate complex and creative tongue twisters. Aim to create tongue twisters that are not only challenging to say but also engaging, entertaining, and potentially humorous. Consider incorporating wordplay, rhyme, and alliteration to enhance the difficulty and enjoyment of the tongue twisters."
}
]
}
]
)
print(message.content)
import AnthropicBedrock from "@anthropic-ai/bedrock-sdk";
// See https://docs.anthropic.com/claude/reference/claude-on-amazon-bedrock
// for authentication options
const client = new AnthropicBedrock();
const msg = await client.messages.create({
model: "anthropic.claude-opus-4-20250514-v1:0",
max_tokens: 1000,
temperature: 1,
messages: [
{
"role": "user",
"content": [
{
"type": "text",
"text": "Generate complex and creative tongue twisters. Aim to create tongue twisters that are not only challenging to say but also engaging, entertaining, and potentially humorous. Consider incorporating wordplay, rhyme, and alliteration to enhance the difficulty and enjoyment of the tongue twisters."
}
]
}
]
});
console.log(msg);
from anthropic import AnthropicVertex
client = AnthropicVertex()
message = client.messages.create(
model="claude-3-7-sonnet-v1@20250219",
max_tokens=1000,
temperature=1,
messages=[
{
"role": "user",
"content": [
{
"type": "text",
"text": "Generate complex and creative tongue twisters. Aim to create tongue twisters that are not only challenging to say but also engaging, entertaining, and potentially humorous. Consider incorporating wordplay, rhyme, and alliteration to enhance the difficulty and enjoyment of the tongue twisters."
}
]
}
]
)
print(message.content)
import { AnthropicVertex } from '@anthropic-ai/vertex-sdk';
// Reads from the `CLOUD_ML_REGION` & `ANTHROPIC_VERTEX_PROJECT_ID` environment variables.
// Additionally goes through the standard `google-auth-library` flow.
const client = new AnthropicVertex();
const msg = await client.messages.create({
model: "claude-3-7-sonnet-v1@20250219",
max_tokens: 1000,
temperature: 1,
messages: [
{
"role": "user",
"content": [
{
"type": "text",
"text": "Generate complex and creative tongue twisters. Aim to create tongue twisters that are not only challenging to say but also engaging, entertaining, and potentially humorous. Consider incorporating wordplay, rhyme, and alliteration to enhance the difficulty and enjoyment of the tongue twisters."
}
]
}
]
});
console.log(msg);
Was this page helpful?
On this page