| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- package com.telerobot.fs.entity.dto.llm;
- public class AccountBaseEntity {
- public int id;
- public String serverUrl;
- public String provider;
- /**
- * The voice prompt played when transferring to agent tips string
- */
- public String transferToAgentTips;
- /**
- * The voice prompt played when call session hangup
- */
- public String hangupTips;
- /**
- * tips for No Voice
- */
- public String customerNoVoiceTips;
- /**
- * The opening remarks of a phone call
- */
- public String openingRemarks;
- public String voiceSource;
- public String voiceCode;
- public String asrLanguageCode;
- public String ttsLanguageCode;
- public String asrModels;
- public String ttsModels;
- public String asrProvider;
- /**
- * way of transferring to manual: acd、extension、gateway
- */
- public String aiTransferType;
- /**
- * Data of specific manual transfer methods
- */
- public String aiTransferData;
- /**
- * ivr id for inbound call session
- */
- public String ivrId;
- /**
- * the IVR menu ID for satisfaction surveys
- */
- public String satisfSurveyIvrId;
- /**
- * voice interruption supported during the robot's speech:
- * 1: Keyword interruption, 0: No interruption, 2: Interrupt if there is a sound
- */
- public int interruptFlag;
- /**
- * List of keywords that support speech interruption.
- */
- public String interruptKeywords;
- /**
- * List of keywords excluded from triggering speech interruption.
- */
- public String interruptIgnoreKeywords;
- public int concurrentNum;
- public String transferManualDigit;
- public int kbCatId;
- /**
- * The voice prompt played when transferring to agent tips string (wav file)
- */
- public String transferToAgentTipsWav;
- /**
- * The voice prompt played when call session hangup (wav file)
- */
- public String hangupTipsWav;
- /**
- * tips for No Voice (wav file)
- */
- public String customerNoVoiceTipsWav;
- /**
- * The opening remarks of a phone call (wav file)
- */
- public String openingRemarksWav;
- }
|