인보이스에서 항목 추출

인보이스 문서에서 항목을 추출하고 JSON 형식으로 반환합니다.

모델을 직접 쿼리하고 Cloud 콘솔에서 다른 매개변수 값을 사용하거나 Vertex AI API를 직접 호출하여 반환된 결과를 테스트할 수 있습니다.

자유 형식 프롬프트

invoice.pdf

귀하는 문서 항목 추출 전문가입니다. 귀하가 할 일은 주어진 문서에서 다음 항목의 텍스트 값을 추출하는 것입니다.
{
    "amount_paid_since_last_invoice": "",
    "carrier": "",
    "currency": "",
    "currency_exchange_rate": "",
    "delivery_date": "",
    "due_date": "",
    "freight_amount": "",
    "invoice_date": "",
    "invoice_id": "",
    "line_items": [
        {
            "amount": "",
            "description": "",
            "product_code": "",
            "purchase_order": "",
            "quantity": "",
            "unit": "",
            "unit_price": ""
        }
    ],
    "net_amount": "",
    "payment_terms": "",
    "purchase_order": "",
    "receiver_address": "",
    "receiver_email": "",
    "receiver_name": "",
    "receiver_phone": "",
    "receiver_tax_id": "",
    "receiver_website": "",
    "remit_to_address": "",
    "remit_to_name": "",
    "ship_from_address": "",
    "ship_from_name": "",
    "ship_to_address": "",
    "ship_to_name": "",
    "supplier_address": "",
    "supplier_email": "",
    "supplier_iban": "",
    "supplier_name": "",
    "supplier_payment_ref": "",
    "supplier_phone": "",
    "supplier_registration": "",
    "supplier_tax_id": "",
    "supplier_website": "",
    "total_amount": "",
    "total_tax_amount": "",
    "vat": [
        {
            "amount": "",
            "category_code": "",
            "tax_amount": "",
            "tax_rate": "",
            "total_amount": ""
        }
    ]
}

  • 추출하는 동안 JSON 스키마를 따라야 합니다.
  • 값은 문서에서 찾은 텍스트만 포함해야 합니다.
  • 항목 값을 정규화하지 마세요.
  • 문서에서 항목을 찾을 수 없는 경우 항목 값을 null로 설정하세요.

응답

{
"amount_paid_since_last_invoice": null,
"carrier": null,
"currency": "$",
"currency_exchange_rate": null,
"delivery_date": null,
"due_date": null,
"freight_amount": null,
"invoice_date": "02/23/2021",
"invoice_id": "3222",
"line_items": [
{
"amount": "490.12",
"description": "Drag Series Transmission Build - A WD DSM",
"product_code": null,
"purchase_order": null,
"quantity": "1",
"unit": null,
"unit_price": "490.12"
},
{
"amount": "220.15",
"description": "Drive Shaft Automatic Right",
"product_code": null,
"purchase_order": null,
"quantity": "7",
"unit": null,
"unit_price": "31.45"
},
{
"amount": "549.10",
"description": "Multigrade Synthetic Technology Bench",
"product_code": null,
"purchase_order": null,
"quantity": "1",
"unit": null,
"unit_price": "549.10"
},
{
"amount": "1,187.79",
"description": "6689 Transit Stan",
"product_code": null,
"purchase_order": null,
"quantity": "1",
"unit": null,
"unit_price": "1,187.79"
},
{
"amount": "883.12",
"description": "HMT Vertical Milling Machine",
"product_code": null,
"purchase_order": null,
"quantity": "1",
"unit": null,
"unit_price": "883.12"
},
{
"amount": "87.54",
"description": "Optional:\nHMT Machine",
"product_code": null,
"purchase_order": null,
"quantity": "1",
"unit": null,
"unit_price": "87.54"
}
],
"net_amount": "3,417.82",
"payment_terms": null,
"purchase_order": null,
"receiver_address": "45 Lightning Road,\nArizona, AZ 88776",
"receiver_email": "proprietor@abcxyz.com",
"receiver_name": "Martin Colby",
"receiver_phone": null,
"receiver_tax_id": null,
"receiver_website": null,
"remit_to_address": null,
"remit_to_name": null,
"ship_from_address": null,
"ship_from_name": null,
"ship_to_address": "45 Lightning Road,\nArizona, AZ 88776",
"ship_to_name": "Johnny Patel",
"supplier_address": "9291 Proin Road\nLake Charles, ME-11292",
"supplier_email": "sales@amnoshsuppliers.com",
"supplier_iban": null,
"supplier_name": "AMNOSH\nSUPPLIERS",
"supplier_payment_ref": null,
"supplier_phone": "123-456-7890",
"supplier_registration": null,
"supplier_tax_id": null,
"supplier_website": "www.amnoshsuppliers.com",
"total_amount": "3,759.60",
"total_tax_amount": "341.78",
"vat": []
}
모델: gemini-1.5-flash-001
강도: 1
최대 출력 토큰: 8192
TopK: 40
TopP: 0.95