fix: teach AI to recognize recement and fix missing service date in column claim

Add "recement" example to LLM classifier so it spreads across multiple
teeth (recement #5, #3 → two D2920 entries). Add "today" to the AI
column claim message so the LLM sets appointmentDate instead of asking
"Which service date?"

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-06-29 00:02:26 -04:00
parent 31505af72d
commit cb49298b66
2 changed files with 3 additions and 1 deletions

View File

@@ -1531,7 +1531,7 @@ export default function AppointmentsPage() {
setAiClaimCurrentData(null);
try {
const res = await apiRequest("POST", "/api/ai/internal-chat", {
message: `claim ${apt.notes} for ${apt.patientName}`,
message: `claim ${apt.notes} for ${apt.patientName} today`,
clientDate: aptDate,
});
const data = await res.json();