diff --git a/src/main/kotlin/com/android/trisolarisserver/controller/GuestDocuments.kt b/src/main/kotlin/com/android/trisolarisserver/controller/GuestDocuments.kt index ea3f37b..1610721 100644 --- a/src/main/kotlin/com/android/trisolarisserver/controller/GuestDocuments.kt +++ b/src/main/kotlin/com/android/trisolarisserver/controller/GuestDocuments.kt @@ -250,17 +250,11 @@ class GuestDocuments( } else { val detectionQuestions = linkedMapOf( - "hasTransportDept" to "CONTAINS TRANSPORT DEPARTMENT? Answer YES or NO only.", - "hasIncomeTaxDept" to "CONTAINS INCOME TAX DEPARTMENT? Answer YES or NO only.", - "hasElectionCommission" to "CONTAINS ELECTION COMMISSION OF INDIA? Answer YES or NO only.", "hasDrivingLicence" to "CONTAINS DRIVING LICENCE? Answer YES or NO only.", - "hasPassport" to "CONTAINS PASSPORT? Answer YES or NO only.", - "hasPolice" to "CONTAINS POLICE? Answer YES or NO only.", - "hasCourt" to "CONTAINS COURT? Answer YES or NO only.", - "hasHighCourt" to "CONTAINS HIGH COURT? Answer YES or NO only.", - "hasSupremeCourt" to "CONTAINS SUPREME COURT? Answer YES or NO only.", - "hasJudiciary" to "CONTAINS JUDICIARY? Answer YES or NO only.", - "isVehiclePhoto" to "IS THIS A VEHICLE PHOTO? Answer YES or NO only." + "hasTransportDept" to "CONTAINS TRANSPORT DEPARTMENT? Answer YES or NO only.", + "hasElectionCommission" to "CONTAINS ELECTION COMMISSION OF INDIA? Answer YES or NO only.", + "hasIncomeTaxDept" to "CONTAINS INCOME TAX DEPARTMENT? Answer YES or NO only.", + "hasPassport" to "CONTAINS PASSPORT? Answer YES or NO only." ) for ((key, question) in detectionQuestions) { results[key] = llamaClient.ask(imageUrl, question)