common.skipToContent

AI 엔티티 생성

AI 지원으로 사용자 정의 엔티티 패턴 생성

AI를 사용하여 내장 인식기로 다루지 않는 사용자 정의 엔티티 유형을 감지하기 위한 정규 표현식 패턴을 생성합니다.

AI 엔티티 생성은 기본 플랜 이상에서 사용할 수 있습니다. 무료 플랜 사용자는 정규 표현식 패턴을 사용하여 수동으로 사용자 정의 엔티티를 생성할 수 있습니다.

AI Entity Creation is available on Basic plan and above. Free plan users can create custom entities manually using regex patterns.


작동 방식

1

감지하려는 패턴의 예시 3-5개를 제공하세요

AI에게 감지하고 싶은 내용을 간단한 언어로 설명하세요.

2

AI가 예시를 분석하고 정규 표현식 패턴을 생성합니다

AI가 귀하의 설명을 바탕으로 정규 표현식 패턴을 생성합니다.

3

샘플 텍스트로 패턴을 테스트합니다

샘플 텍스트로 패턴을 테스트하고 필요에 따라 조정하세요.

4

품질 지표를 검토하고 필요시 수정합니다

분석에 사용할 사용자 정의 엔티티를 저장하세요.


AI 엔티티 생성

1단계: 사용자 정의 엔티티 열기

  1. Go to Settings → Custom Entities
  2. Click Create New Entity
  3. Select AI-Assisted mode

2단계: 패턴 설명하기

감지하고 싶은 내용을 명확하게 설명하세요. 형식에 대해 구체적으로 작성하세요.

좋은 예시

  • "Employee IDs in the format EMP-12345 where 12345 is a 5-digit number"
  • "Order numbers starting with ORD followed by 8 digits, like ORD12345678"
  • "German postal codes - 5 digit numbers between 01000 and 99999"
  • "Internal project codes: 3 uppercase letters, a dash, and 4 digits (e.g., ABC-1234)"

모호한 설명 피하기

  • "ID numbers" - Too vague, what format?
  • "Customer data" - What specific pattern?
  • "Codes" - Need more specifics about format

3단계: 생성된 패턴 검토

AI가 귀하의 설명을 바탕으로 정규 표현식 패턴을 생성합니다. 검토하세요:

// For "Employee IDs: EMP-12345"

EMP-\d{5}

4단계: 패턴 테스트

  1. Enter sample text in the test area
  2. Click Test Pattern
  3. Verify that matches are highlighted correctly
  4. Check for false positives and false negatives

5단계: 엔티티 저장

  1. Enter a name for your entity (e.g., EMPLOYEE_ID)
  2. Add an optional description
  3. Choose a category (Personal, Technical, Custom, etc.)
  4. Click Save Entity

토큰 비용

50 토큰AI 엔티티 생성당

이는 패턴 복잡성과 관계없이 고정 비용입니다. 수동 정규 표현식 입력은 무료입니다.

비용을 최소화하려면:

  • Be as specific as possible in your first description
  • Use manual regex if you already know the pattern
  • Test thoroughly before saving to avoid recreating

수동 정규 표현식 생성

정규 표현식을 알고 있다면, 토큰을 사용하지 않고 사용자 정의 엔티티를 수동으로 생성할 수 있습니다:

  1. Go to Settings → Custom Entities
  2. Click Create New Entity
  3. Select Manual mode
  4. Enter your regex pattern directly
  5. Test and save

정규 표현식 팁

패턴의미예시 일치
\dAny digit (0-9)5
\d{3}Exactly 3 digits123
[A-Z]Uppercase letterA
[A-Z]{3}3 uppercase lettersABC
\wLetter, digit, or underscorea, 1, _
-Literal dash-
?Optional (0 or 1)
+One or more
*Zero or more

예시 패턴

Employee ID (EMP-12345)

EMP-\d{5}

Order Number (ORD12345678)

ORD\d{8}

Project Code (ABC-1234)

[A-Z]{3}-\d{4}

License Plate (ABC 123 or ABC-123)

[A-Z]{3}[\s-]?\d{3}


사용자 정의 엔티티 사용

생성된 후, 사용자 정의 엔티티는 내장 엔티티처럼 작동합니다:

분석기에서

  1. Open the entity selection panel
  2. Find your custom entity under the Custom category
  3. Check the box to include it in detection
  4. Run analysis as normal

프리셋에서

  1. Create or edit a preset
  2. Select your custom entity from the entity list
  3. Save the preset

Tip

사용자 정의 엔티티는 내장 엔티티와 구별하기 위해 '사용자 정의' 배지가 표시됩니다.


사용자 정의 엔티티 관리

엔티티 편집

  1. Go to Settings → Custom Entities
  2. Find your entity and click Edit
  3. Modify the name, description, or pattern
  4. Test the updated pattern
  5. Save changes

엔티티 삭제

  1. Go to Settings → Custom Entities
  2. Find your entity and click Delete
  3. Confirm deletion

Note

사용자 정의 엔티티를 삭제하면 이를 사용하는 모든 프리셋에서 제거됩니다. 프리셋은 여전히 작동하지만 해당 엔티티 유형을 감지하지 않습니다.


모범 사례

AI 설명에서 구체적으로 작성하세요 - 형식 세부정보 및 예시 포함
저장하기 전에 엣지 케이스로 패턴을 테스트하세요.
ID1 대신 CUSTOMER_ORDER_ID와 같은 의미 있는 이름을 사용하세요.
각 엔티티가 감지하는 내용을 기억하는 데 도움이 되는 설명을 추가하세요.
정규 표현식에 익숙하다면 수동 정규 표현식을 사용하세요 - 토큰을 절약합니다.
관리 용이성을 위해 관련 사용자 정의 엔티티를 동일한 프리셋에 그룹화하세요.

Related Documentation

마지막 업데이트: 2026년 3월