๐Ÿ“„ claude/prompt-library/simile-savant

File: simile-savant.md | Updated: 11/15/2025

Source: https://docs.claude.com/en/prompt-library/simile-savant

Agent Skills are now available! Learn more about extending Claude's capabilities with Agent Skills .

Claude Docs home pagelight logodark logo

US

English

Search...

Ctrl K

Search...

Navigation

Prompt Library

Simile savant

Home Developer Guide API Reference Model Context Protocol (MCP) Resources Release Notes

On this page

Copy this prompt into our developer Console to try it for yourself!

| Role | Content | | --- | --- | | User | Help me create some similes to describe a personโ€™s laughter that is joyful and contagious? |

โ€‹

Example Output

  1. His laughter bubbled up like a freshly opened bottle of champagne, effervescent and full of life.
  2. Their laughter was as warm and inviting as a cozy fireplace on a chilly evening, drawing people in to share in the merriment.

โ€‹

API Request

  • Python
  • TypeScript
  • AWS Bedrock Python
  • AWS Bedrock TypeScript
  • Vertex AI Python
  • Vertex AI TypeScript

Copy

import anthropic

client = anthropic.Anthropic(
  # defaults to os.environ.get("ANTHROPIC_API_KEY")
  api_key="my_api_key",
)
message = client.messages.create(
  model="claude-sonnet-4-5",
  max_tokens=1000,
  temperature=1,
  messages=[\
    {\
      "role": "user",\
      "content": [\
        {\
          "type": "text",\
          "text": "Help me create some similes to describe a person's laughter that is joyful and contagious?"\
        }\
      ]\
    }\
  ]
)
print(message.content)

Was this page helpful?

YesNo

Git gud Ethical dilemma navigator

Assistant

Responses are generated using AI and may contain mistakes.