Loading...
    • 개발자 가이드
    • API 참고자료
    • MCP
    • 리소스
    • 릴리스 노트
    Search...
    ⌘K

    리소스

    overview용어집시스템 프롬프트

    사용 사례

    개요티켓 라우팅고객 지원 에이전트콘텐츠 조정법률 문서 요약

    프롬프트 라이브러리

    프롬프트 라이브러리우주 키스트로크기업 투시자웹사이트 마법사Excel 수식 전문가Google 앱스 스크립터Python 버그 해결사시간 여행 컨설턴트스토리텔링 조수출처 인용하기SQL 마법사꿈 해석가말장난 전문가요리 창작자혼성어 시인유머러스한 도우미 HalLaTeX 전문가무드 컬러라이저Git gud직유 전문가윤리적 딜레마 내비게이터회의 서기관용구 해설자코드 컨설턴트함수 제작기신조어 창조자CSV 변환기이모지 인코더산문 다듬기관점 숙고자퀴즈 생성기마음챙김 멘토초등학교 2학년 수준 단순화기VR 피트니스 혁신가PII 정화기메모 마에스트로커리어 코치채점 전문가발음하기 어려운 말면접 질문 작성자문법 지니수수께끼를 내어보세요코드 명확화기외계 인류학자데이터 정리기브랜드 빌더효율성 추정기리뷰 분류기방향 디코더동기부여 뮤즈이메일 추출기마스터 모더레이터수업 계획서 작성자소크라테스식 현자두운 연금술사미래지향적 패션 어드바이저다국어 초능력제품명 작성 전문가철학적 사색스프레드시트 마법사공상과학 시나리오 시뮬레이터적응형 편집기Babel의 방송트윗 톤 감지기공항 코드 분석기
    Console
    프롬프트 라이브러리

    스프레드시트 마법사

    다양한 유형의 데이터로 CSV 스프레드시트를 생성합니다.

    이 프롬프트를 우리 개발자 Console에 복사하여 직접 시도해보세요!

    Content
    System당신의 임무는 지정된 유형의 데이터를 포함하는 CSV 스프레드시트를 생성하는 것입니다. 스프레드시트는 명확한 열 헤더와 각 열에 적절한 데이터 유형으로 잘 정리되어야 합니다. 데이터가 현실적이고 다양하며 일관되게 형식화되도록 하세요. 헤더 행을 제외하고 최소 10행의 데이터를 포함하세요.
    User도서관의 책에 대한 정보를 포함하는 스프레드시트를 만드세요. 다음 열을 포함하세요: Book ID, Title, Author, Genre, Publication Year, Available Copies. 데이터가 다양한 장르와 출판 연도를 다루고, 사용 가능한 사본 수가 책마다 다르도록 하세요.

    예시 출력

    다음은 귀하의 요구사항에 따라 도서관의 책에 대한 정보를 포함하는 CSV 스프레드시트입니다:

    Book ID,Title,Author,Genre,Publication Year,Available Copies
    1,To Kill a Mockingbird,Harper Lee,Classic,1960,5
    2,1984,George Orwell,Dystopian,1949,3
    3,Pride and Prejudice,Jane Austen,Romance,1813,7
    4,The Catcher in the Rye,J.D. Salinger,Coming-of-age,1951,2
    5,The Hitchhiker's Guide to the Galaxy,Douglas Adams,Science Fiction,1979,4
    6,The Da Vinci Code,Dan Brown,Mystery,2003,6
    7,The Kite Runner,Khaled Hosseini,Historical Fiction,2003,3
    8,The Alchemist,Paulo Coelho,Philosophical Fiction,1988,5
    9,The Hunger Games,Suzanne Collins,Young Adult,2008,8
    10,The Girl with the Dragon Tattoo,Stieg Larsson,Crime,2005,4
    11,The Hobbit,J.R.R. Tolkien,Fantasy,1937,6
    12,The Diary of a Young Girl,Anne Frank,Autobiography,1947,2
    13,The Fault in Our Stars,John Green,Young Adult,2012,5
    14,The Catcher in the Rye,J.D. Salinger,Coming-of-age,1951,3
    15,The Curious Incident of the Dog in the Night-Time,Mark Haddon,Mystery,2003,4


    API 요청

    Python
    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=0,
        system="당신의 임무는 지정된 유형의 데이터를 포함하는 CSV 스프레드시트를 생성하는 것입니다. 스프레드시트는 명확한 열 헤더와 각 열에 적절한 데이터 유형으로 잘 정리되어야 합니다. 데이터가 현실적이고 다양하며 일관되게 형식화되도록 하세요. 헤더 행을 제외하고 최소 10행의 데이터를 포함하세요.",
        messages=[
            {
                "role": "user",
                "content": [
                    {
                        "type": "text",
                        "text": "도서관의 책에 대한 정보를 포함하는 스프레드시트를 만드세요. 다음 열을 포함하세요: Book ID, Title, Author, Genre, Publication Year, Available Copies. 데이터가 다양한 장르와 출판 연도를 다루고, 사용 가능한 사본 수가 책마다 다르도록 하세요."
                    }
                ]
            }
        ]
    )
    print(message.content)
    
    TypeScript
    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-sonnet-4-5",
      max_tokens: 1000,
      temperature: 0,
      system: "당신의 임무는 지정된 유형의 데이터를 포함하는 CSV 스프레드시트를 생성하는 것입니다. 스프레드시트는 명확한 열 헤더와 각 열에 적절한 데이터 유형으로 잘 정리되어야 합니다. 데이터가 현실적이고 다양하며 일관되게 형식화되도록 하세요. 헤더 행을 제외하고 최소 10행의 데이터를 포함하세요.",
      messages: [
        {
          "role": "user",
          "content": [
            {
              "type": "text",
              "text": "도서관의 책에 대한 정보를 포함하는 스프레드시트를 만드세요. 다음 열을 포함하세요: Book ID, Title, Author, Genre, Publication Year, Available Copies. 데이터가 다양한 장르와 출판 연도를 다루고, 사용 가능한 사본 수가 책마다 다르도록 하세요."
            }
          ]
        }
      ]
    });
    console.log(msg);
    
    AWS Bedrock Python
    from anthropic import AnthropicBedrock
    
    # See https://docs.claude.com/claude/reference/claude-on-amazon-bedrock
    # for authentication options
    client = AnthropicBedrock()
    
    message = client.messages.create(
        model="anthropic.claude-sonnet-4-5-20250929-v1:0",
        max_tokens=1000,
        temperature=0,
        system="당신의 임무는 지정된 유형의 데이터를 포함하는 CSV 스프레드시트를 생성하는 것입니다. 스프레드시트는 명확한 열 헤더와 각 열에 적절한 데이터 유형으로 잘 정리되어야 합니다. 데이터가 현실적이고 다양하며 일관되게 형식화되도록 하세요. 헤더 행을 제외하고 최소 10행의 데이터를 포함하세요.",
        messages=[
            {
                "role": "user",
                "content": [
                    {
                        "type": "text",
                        "text": "도서관의 책에 대한 정보를 포함하는 스프레드시트를 만드세요. 다음 열을 포함하세요: Book ID, Title, Author, Genre, Publication Year, Available Copies. 데이터가 다양한 장르와 출판 연도를 다루고, 사용 가능한 사본 수가 책마다 다르도록 하세요."
                    }
                ]
            }
        ]
    )
    print(message.content)
    
    AWS Bedrock TypeScript
    import AnthropicBedrock from "@anthropic-ai/bedrock-sdk";
    
    // See https://docs.claude.com/claude/reference/claude-on-amazon-bedrock
    // for authentication options
    const client = new AnthropicBedrock();
    
    const msg = await client.messages.create({
      model: "anthropic.claude-sonnet-4-5-20250929-v1:0",
      max_tokens: 1000,
      temperature: 0,
      system: "당신의 임무는 지정된 유형의 데이터를 포함하는 CSV 스프레드시트를 생성하는 것입니다. 스프레드시트는 명확한 열 헤더와 각 열에 적절한 데이터 유형으로 잘 정리되어야 합니다. 데이터가 현실적이고 다양하며 일관되게 형식화되도록 하세요. 헤더 행을 제외하고 최소 10행의 데이터를 포함하세요.",
      messages: [
        {
          "role": "user",
          "content": [
            {
              "type": "text",
              "text": "도서관의 책에 대한 정보를 포함하는 스프레드시트를 만드세요. 다음 열을 포함하세요: Book ID, Title, Author, Genre, Publication Year, Available Copies. 데이터가 다양한 장르와 출판 연도를 다루고, 사용 가능한 사본 수가 책마다 다르도록 하세요."
            }
          ]
        }
      ]
    });
    console.log(msg);
    
    Vertex AI Python
    from anthropic import AnthropicVertex
    
    client = AnthropicVertex()
    
    message = client.messages.create(
        model="claude-sonnet-4@20250514",
        max_tokens=1000,
        temperature=0,
        system="당신의 임무는 지정된 유형의 데이터를 포함하는 CSV 스프레드시트를 생성하는 것입니다. 스프레드시트는 명확한 열 헤더와 각 열에 적절한 데이터 유형으로 잘 정리되어야 합니다. 데이터가 현실적이고 다양하며 일관되게 형식화되도록 하세요. 헤더 행을 제외하고 최소 10행의 데이터를 포함하세요.",
        messages=[
            {
                "role": "user",
                "content": [
                    {
                        "type": "text",
                        "text": "도서관의 책에 대한 정보를 포함하는 스프레드시트를 만드세요. 다음 열을 포함하세요: Book ID, Title, Author, Genre, Publication Year, Available Copies. 데이터가 다양한 장르와 출판 연도를 다루고, 사용 가능한 사본 수가 책마다 다르도록 하세요."
                    }
                ]
            }
        ]
    )
    print(message.content)
    
    Vertex AI TypeScript
    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-sonnet-4@20250514",
      max_tokens: 1000,
      temperature: 0,
      system: "당신의 임무는 지정된 유형의 데이터를 포함하는 CSV 스프레드시트를 생성하는 것입니다. 스프레드시트는 명확한 열 헤더와 각 열에 적절한 데이터 유형으로 잘 정리되어야 합니다. 데이터가 현실적이고 다양하며 일관되게 형식화되도록 하세요. 헤더 행을 제외하고 최소 10행의 데이터를 포함하세요.",
      messages: [
        {
          "role": "user",
          "content": [
            {
              "type": "text",
              "text": "도서관의 책에 대한 정보를 포함하는 스프레드시트를 만드세요. 다음 열을 포함하세요: Book ID, Title, Author, Genre, Publication Year, Available Copies. 데이터가 다양한 장르와 출판 연도를 다루고, 사용 가능한 사본 수가 책마다 다르도록 하세요."
            }
          ]
        }
      ]
    });
    console.log(msg);
    
    • API 요청
    © 2025 ANTHROPIC PBC

    Products

    • Claude
    • Claude Code
    • Max plan
    • Team plan
    • Enterprise plan
    • Download app
    • Pricing
    • Log in

    Features

    • Claude and Slack
    • Claude in Excel

    Models

    • Opus
    • Sonnet
    • Haiku

    Solutions

    • AI agents
    • Code modernization
    • Coding
    • Customer support
    • Education
    • Financial services
    • Government
    • Life sciences

    Claude Developer Platform

    • Overview
    • Developer docs
    • Pricing
    • Amazon Bedrock
    • Google Cloud’s Vertex AI
    • Console login

    Learn

    • Blog
    • Catalog
    • Courses
    • Use cases
    • Connectors
    • Customer stories
    • Engineering at Anthropic
    • Events
    • Powered by Claude
    • Service partners
    • Startups program

    Company

    • Anthropic
    • Careers
    • Economic Futures
    • Research
    • News
    • Responsible Scaling Policy
    • Security and compliance
    • Transparency

    Help and security

    • Availability
    • Status
    • Support center

    Terms and policies

    • Privacy policy
    • Responsible disclosure policy
    • Terms of service: Commercial
    • Terms of service: Consumer
    • Usage policy

    Products

    • Claude
    • Claude Code
    • Max plan
    • Team plan
    • Enterprise plan
    • Download app
    • Pricing
    • Log in

    Features

    • Claude and Slack
    • Claude in Excel

    Models

    • Opus
    • Sonnet
    • Haiku

    Solutions

    • AI agents
    • Code modernization
    • Coding
    • Customer support
    • Education
    • Financial services
    • Government
    • Life sciences

    Claude Developer Platform

    • Overview
    • Developer docs
    • Pricing
    • Amazon Bedrock
    • Google Cloud’s Vertex AI
    • Console login

    Learn

    • Blog
    • Catalog
    • Courses
    • Use cases
    • Connectors
    • Customer stories
    • Engineering at Anthropic
    • Events
    • Powered by Claude
    • Service partners
    • Startups program

    Company

    • Anthropic
    • Careers
    • Economic Futures
    • Research
    • News
    • Responsible Scaling Policy
    • Security and compliance
    • Transparency

    Help and security

    • Availability
    • Status
    • Support center

    Terms and policies

    • Privacy policy
    • Responsible disclosure policy
    • Terms of service: Commercial
    • Terms of service: Consumer
    • Usage policy
    © 2025 ANTHROPIC PBC