Libreria di prompt
Scioglilingua
Risorse
- Overview
- Guide rapide
- Scheda modello Claude 3
- Scheda di sistema Claude 3.7
- Stato del sistema
- Corsi Anthropic
- Libreria di prompt
- Libreria di Prompt
- Battute Cosmiche
- Chiaroveggente aziendale
- Creatore di siti web
- Esperto di formule Excel
- Programmatore di script per Google apps
- Cacciatore di bug Python
- Consulente di viaggi nel tempo
- Compagno di narrazione
- Cita le tue fonti
- Stregone SQL
- Interprete dei sogni
- Pun-dit
- Creatore culinario
- Poeta di portmanteau
- Hal l'assistente umoristico
- Leggenda LaTeX
- Coloratore di stati d'animo
- Git gud
- Esperto di similitudini
- Navigatore di dilemmi etici
- Meeting scribe
- Illuminatore di modi di dire
- Consulente di codice
- Fabbricatore di funzioni
- Creatore di neologismi
- Convertitore CSV
- Codificatore di emoji
- Perfezionatore di prosa
- Valutatore di prospettive
- Generatore di quiz
- Mentore di mindfulness
- Semplificatore per la seconda elementare
- Innovatore di fitness VR
- Purificatore di PII
- Maestro dei memo
- Coach di carriera
- Guru della valutazione
- Scioglilingua
- Creatore di domande per colloqui
- Genio della grammatica
- Indovinello per te
- Chiarificatore di codice
- Antropologo alieno
- Organizzatore di dati
- Creatore di brand
- Stimatore di efficienza
- Classificatore di recensioni
- Decodificatore di direzioni
- Musa motivazionale
- Estrattore di email
- Moderatore esperto
- Pianificatore di lezioni
- Saggio socratico
- Alchimista dell'allitterazione
- Consulente di moda futuristica
- Superpoteri poliglotti
- Esperto di nomi di prodotti
- Riflessioni filosofiche
- Mago dei fogli di calcolo
- Simulatore di scenari di fantascienza
- Editor adattivo
- Trasmissioni di Babele
- Rilevatore del tono dei tweet
- Analista di codici aeroportuali
Libreria di prompt
Scioglilingua
Crea scioglilingua impegnativi.
Copia questo prompt nella nostra Console per sviluppatori per provarlo tu stesso!
Ruolo | Contenuto |
---|---|
User | Genera scioglilingua complessi e creativi. Punta a creare scioglilingua che non siano solo difficili da pronunciare ma anche coinvolgenti, divertenti e potenzialmente umoristici. Considera di incorporare giochi di parole, rime e allitterazioni per aumentare la difficoltà e il divertimento degli scioglilingua. |
Esempio di Output
Scioglilingua 1:
L’astuto toporagno ha masticato attraverso la scarpa lucida e scintillante.
Scioglilingua 2:
Brezze vivaci soffiarono accanto al babbuino di sangue blu, blaterante e balbettante.
Scioglilingua 3:
Il perplesso pifferaio raccolse un pizzico di peperoni sottaceto mentre praticava il suo suonare il piffero.
Scioglilingua 4:
Sei slitte eleganti, lisce e snelle scivolarono rapidamente giù per il ripido pendio innevato.
Richiesta 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