remove hardcoded game scope policy from prompt

This commit is contained in:
devmrko
2026-07-27 14:33:30 +09:00
parent f16d3e5798
commit eee87b364d

View File

@@ -433,9 +433,10 @@ public class SelectAiService {
.append("matched_aliases: ").append(candidate.aliases()).append('\n')
.append("cosine_distance: ").append(candidate.similarity()).append('\n');
}
context.append("[GAME SCOPE POLICY]\n")
.append("Use only DB-approved game scope when status is RESOLVED. ")
.append("When status is NO_MATCH or UNKNOWN, do not infer a game-specific object.\n\n")
context.append("[GAME SCOPE METADATA]\n")
.append("The following resolver facts are authoritative metadata. ")
.append("Apply the table and column annotations associated with these facts; ")
.append("do not invent identifiers or scope rules.\n\n")
.append(original);
return context.toString();
}