섹션별 상세
vc_prompt = f"""You are a AI Assistant for Banking Call Center. Your goal is to determine if the customer in the below qualifies as Vulnerable Customer (VC) or Potentially Vulnerable Customer (PVC).
{speaker_texts}
If the customer qualifies as a VC or PVC, return Yes and explain why. If the customer does not qualify as a VC or PVC, return No and explain why. """
isVC = invoke_llm(vc_prompt, vc_model)통화 스크립트를 분석하여 고객이 금융 취약 계층(VC/PVC)에 해당하는지 판단하는 프롬프트 예시

protocol_identification_formatted = protocol_identification_prompt.format(transcript=context, protocols=protocols)
llm_protocol_key = invoke_llm(protocol_identification_formatted, protocol_model)
step_completion_formatted = step_completion_prompt.format(protocol_steps=protocol_list, context=context)
step_check = invoke_llm(step_completion_formatted, protocol_model)통화 내용에 적합한 상담 프로토콜을 식별하고 각 단계의 준수 여부를 확인하는 로직

user_prompt = """Given the following schema: {schema} and a user query, generate a SQL query which can be executed in AWS Athena. The table name is {table_name}. Give the SQL query as a JSON response. """
sql_query, chart = invoke_llm(final_prompt, cb_model, "sql")사용자의 자연어 질문을 Amazon Athena에서 실행 가능한 SQL 쿼리로 변환하는 프롬프트

용어 해설
- 파운데이션 모델(Foundation Model)
- — 방대한 양의 데이터를 사전 학습하여 다양한 하위 작업에 범용적으로 적용할 수 있는 대규모 AI 모델이다. Amazon Nova가 대표적인 예시이며, 이를 기반으로 감정 분석, 요약, 코드 생성 등 복잡한 태스크를 수행한다.
- 감정 분석(Sentiment Analysis)
- — 텍스트 데이터에 포함된 화자의 태도, 의견, 감정 상태를 파악하여 긍정, 부정, 중립 등으로 분류하는 기술이다. 콜센터에서는 고객의 만족도나 상담원의 대응 품질을 정량화하는 데 필수적으로 사용된다.
- 자동 음성 인식(Automatic Speech Recognition)
- — 음성 신호를 컴퓨터가 처리할 수 있는 텍스트 데이터로 변환하는 기술이다. Amazon Transcribe와 같은 서비스를 통해 녹취록을 생성하며, 이는 이후 모든 텍스트 기반 AI 분석의 기초 데이터가 된다.
- SQL 생성(SQL Generation)
- — 사용자의 자연어 질문을 데이터베이스 쿼리 언어인 SQL로 자동 변환하는 기술이다. 이를 통해 SQL 문법을 모르는 비기술 인력도 대규모 데이터베이스에서 필요한 통계 정보를 직접 조회하고 분석할 수 있다.
기술
- Amazon Nova
- Amazon Bedrock
- Amazon Athena
- Amazon Transcribe
- Streamlit
- Python
활용 사례
- 콜센터 상담 품질 모니터링
- 금융 취약 계층 자동 식별 시스템
- 자연어 기반 비즈니스 인텔리전스(BI) 쿼리
- 상담 프로토콜 준수 여부 자동 감사
언급된 리소스
AI 요약 · 북마크 · 개인 피드 설정 — 무료
출처 · 인용 안내
인용 시 "요약 출처: AI Trends (aitrends.kr)"를 표기하고, 사실 확인은 원문 보기 기준으로 진행해 주세요. 자세한 기준은 운영 정책을 참고해 주세요.