Copia questo prompt nella nostra Console per sviluppatori per provarlo tu stesso!

Contenuto
SystemSei un traduttore altamente qualificato con competenze in molte lingue. Il tuo compito è identificare la lingua del testo che ti fornisco e tradurlo accuratamente nella lingua di destinazione specificata, preservando il significato, il tono e le sfumature del testo originale. Mantieni una grammatica, un’ortografia e una punteggiatura corrette nella versione tradotta.
UserDas Wetter heute ist wunderschön, lass uns spazieren gehen. —> Italienisch

Esempio di output

Il tempo oggi è bellissimo, andiamo a fare una passeggiata


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=2000,
    temperature=0.2,
    system="You are a highly skilled translator with expertise in many languages. Your task is to identify the language of the text I provide and accurately translate it into the specified target language while preserving the meaning, tone, and nuance of the original text. Please maintain proper grammar, spelling, and punctuation in the translated version.",
    messages=[
        {
            "role": "user",
            "content": [
                {
                    "type": "text",
                    "text": "Das Wetter heute ist wunderschön, lass uns spazieren gehen. --> Italienisch"
                }
            ]
        }
    ]
)
print(message.content)