Loading...
  • 빌드
  • 관리
  • 모델 및 가격
  • 클라이언트 SDK
  • API 참조
Search...
⌘K
Log in
Console에서 프로토타입 만들기
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...

Solutions

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

Partners

  • Amazon Bedrock
  • Google Cloud's Vertex AI

Learn

  • Blog
  • 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

Learn

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

Help and security

  • Availability
  • Status
  • Support
  • Discord

Terms and policies

  • Privacy policy
  • Responsible disclosure policy
  • Terms of service: Commercial
  • Terms of service: Consumer
  • Usage policy
빌드/시작하기

Console에서 프로토타입 만들기

API 호출을 작성하지 않고 Console에서 시각적으로 에이전트를 만들고 테스트합니다.

Console은 에이전트를 만들고 구성하기 위한 시각적 인터페이스를 제공합니다. API와 동일한 /v1/agents 및 /v1/sessions 리소스를 생성하지만 코드를 작성하기 전에 구성을 대화형으로 반복할 수 있습니다.

모든 Managed Agents API 요청에는 managed-agents-2026-04-01 베타 헤더가 필요합니다. SDK는 베타 헤더를 자동으로 설정합니다.

에이전트를 만드는 방법

시각적 인터페이스는 에이전트 정의의 각 필드를 안내합니다:

  • 모델 및 시스템 프롬프트: 모델을 선택하고 전체 너비 편집기에서 시스템 프롬프트를 작성합니다.
  • MCP 서버: URL로 원격 MCP 서버를 추가하고 에이전트를 인증하여 사용자를 대신하여 작업을 수행합니다.
  • 도구: 사전 구축된 에이전트 도구 세트 및 MCP 도구를 사용하여 에이전트의 기능을 확장합니다.
  • 스킬: 조직의 라이브러리에서 Anthropic 또는 사용자 정의 스킬을 첨부합니다.

구성하면서 Console은 동등한 API 요청을 표시하므로 만족하면 코드에 복사할 수 있습니다.

에이전트 테스트

Console에는 인라인 세션 실행기가 포함되어 있습니다. 에이전트를 구성한 후 테스트 세션을 직접 시작하고, 메시지를 보내고, 페이지를 떠나지 않고 이벤트 스트림을 볼 수 있습니다. 이것이 시스템 프롬프트와 도구 선택이 예상한 동작을 생성하는지 확인하는 가장 빠른 방법입니다.

프로토타입에서 코드로

에이전트가 예상대로 작동하면:

  1. Console 출력에서 에이전트 ID를 복사합니다.
  2. 세션을 만들 때 코드에서 참조합니다:
session = client.beta.sessions.create(
    agent="agent_01J8XkN5uT3vHpLqRfWdY2",
    environment_id="env_01K2mPsT7hNwR4jXuLvCqD8",
    title="My first session",
)

Was this page helpful?