This commit is contained in:
2026-07-12 17:36:58 -05:00
parent 82cca38f29
commit 1ff5f429c4
2 changed files with 5 additions and 3 deletions

View File

@@ -107,7 +107,7 @@ services:
- -fa - -fa
- "on" - "on"
- -c - -c
- "32768" - "40960"
- --parallel - --parallel
- "1" - "1"
# KV-Cache quantisieren — 32GB VRAM, 35B-A3B + mmproj + Bildkontext: # KV-Cache quantisieren — 32GB VRAM, 35B-A3B + mmproj + Bildkontext:
@@ -121,7 +121,7 @@ services:
- --image-min-tokens - --image-min-tokens
- "1024" - "1024"
- --image-max-tokens - --image-max-tokens
- "4096" - "6144"
- --temp - --temp
- "0.1" - "0.1"
- --top-p - --top-p

View File

@@ -305,7 +305,9 @@ Task: Classify the document and transcribe form fields from a business brokerage
6. If doc_type is "ca_only": transcribe what the confidentiality agreement page offers — the prospective buyer's printed or signed name into prospective_buyer, plus address/phone/email if they appear on that page. Everything not present stays null. 6. If doc_type is "ca_only": transcribe what the confidentiality agreement page offers — the prospective buyer's printed or signed name into prospective_buyer, plus address/phone/email if they appear on that page. Everything not present stays null.
7. date_of_introduction_raw: the date written next to the buyer's signature on the confidentiality agreement page, verbatim (e.g. "6/25/26"), else null. 7. date_of_introduction_raw: the date written next to the buyer's signature on the confidentiality agreement page, verbatim (e.g. "6/25/26"), else null.
A blank field, "N/A", "n", or an empty line = transcribe it as written; if truly empty, use null. Return only the JSON object.`; A blank field, "N/A", "n", or an empty line = transcribe it as written; if truly empty, use null.
Handwriting rules: Transcribe handwritten values letter by letter — do NOT complete them from context or from other fields. Email addresses are the most reliable spelling source on the page: read the email character by character, and if a handwritten name is ambiguous (e.g. B vs D), prefer the spelling that appears in the email address. Never alter the email itself to match your reading of the name.
Return only the JSON object.`;
async function fetchModelId(api: string): Promise<string> { async function fetchModelId(api: string): Promise<string> {
try { try {