Библиотека промптов
Скороговорки
Ресурсы
- Overview
- Быстрый старт
- Карточка модели Claude 3
- Системная карта Claude 3.7
- Статус системы
- Курсы Anthropic
- Библиотека промптов
- Библиотека промптов
- Космические клавиши
- Корпоративный ясновидящий
- Мастер создания веб-сайтов
- Эксперт по формулам Excel
- Разработчик скриптов Google Apps
- Отладчик Python
- Консультант по путешествиям во времени
- Помощник по сторителлингу
- Цитируйте свои источники
- SQL-волшебник
- Толкователь снов
- Каламбурщик
- Кулинарный создатель
- Поэт портманто
- Хэл - юмористический помощник
- LaTeX справочник
- Цветовой определитель настроения
- Git gud
- Мастер сравнений
- Навигатор по этическим дилеммам
- Протоколист совещаний
- Толкователь идиом
- Консультант по коду
- Создатель функций
- Создатель неологизмов
- Конвертер CSV
- Эмодзи-кодировщик
- Шлифовщик прозы
- Анализатор перспектив
- Генератор викторин
- Наставник по осознанности
- Упроститель для второклассников
- Инноватор фитнеса в VR
- Очиститель PII
- Мастер служебных записок
- Карьерный коуч
- Эксперт по оценке
- Скороговорки
- Составитель вопросов для собеседования
- Гений грамматики
- Загадай-ка мне загадку
- Пояснитель кода
- Инопланетный антрополог
- Организатор данных
- Создатель бренда
- Оценщик эффективности
- Классификатор отзывов
- Преобразователь указаний
- Мотивационная муза
- Извлечение email-адресов
- Мастер-модератор
- Планировщик уроков
- Сократический мудрец
- Алхимик аллитераций
- Футуристический консультант по моде
- Полиглот-суперсилы
- Профессионал по названиям продуктов
- Философские размышления
- Волшебник электронных таблиц
- Симулятор научно-фантастических сценариев
- Адаптивный редактор
- Вещание Вавилона
- Определитель тона твитов
- Анализатор кодов аэропортов
Библиотека промптов
Скороговорки
Создание сложных скороговорок.
Скопируйте этот промпт в нашу Консоль для разработчиков, чтобы попробовать самостоятельно!
Роль | Содержание |
---|---|
User | Создайте сложные и креативные скороговорки. Стремитесь создавать скороговорки, которые не только сложно произносить, но и которые увлекательны, интересны и потенциально юмористичны. Рассмотрите возможность использования игры слов, рифмы и аллитерации, чтобы повысить сложность и удовольствие от скороговорок. |
Пример вывода
Скороговорка 1:
Хитрая землеройка прогрызла блестящий, сверкающий ботинок.
Скороговорка 2:
Бодрые бризы пролетали мимо голубокровного, болтливого, лепечущего бабуина.
Скороговорка 3:
Озадаченный волынщик выбрал мешок маринованного перца, практикуясь в игре на волынке.
Скороговорка 4:
Шесть гладких, скользких, стройных саней быстро скользили вниз по крутому, заснеженному склону.
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