{
  "contractVersion": "1",
  "recordType": "openai_responses_request_contract",
  "correctionId": "termstrail-gpt-5-6-v3-vague-payment-correction-check",
  "intendedProjectRequestNumber": 4,
  "baseGitCommit": "a9240fad6651f178384e29fc0b76cf3b3bd17f81",
  "fixture": {
    "id": "vague-payment-message",
    "sourceId": "source-live-vague-payment",
    "sourceName": "synthetic-vague-dealer-message.txt",
    "sourceKind": "text",
    "sourceSha256": "2b0a6dd0ba7b1abee43111f476119976e02ce7d97cb0e74938eda7bc3baf0e8d",
    "sourceDefinitionPath": "evals/live/fixtures/qualification-fixtures.json",
    "synthetic": true
  },
  "versions": {
    "requestedModel": "gpt-5.6",
    "promptVersion": "vehicle-quote-evidence-v3",
    "liveSchemaVersion": "vehicle-quote-evidence-schema-v3"
  },
  "transport": {
    "sdk": "openai",
    "endpoint": "responses.create",
    "maxRetries": 0,
    "timeoutMs": 60000,
    "apiRequests": 1
  },
  "authorizationBoundary": {
    "maximumApiRequests": 1,
    "maximumUsd": 0.1,
    "maximumOutputTokens": 512,
    "localEstimateNotProviderBillingCeiling": true,
    "approvedContractSha256RequiredAtExecution": true
  },
  "requestBody": {
    "model": "gpt-5.6",
    "store": false,
    "stream": false,
    "instructions": "You extract evidence from one synthetic vehicle quote source.\n\nReturn only claims explicitly visible in the supplied source. Never create a claim for an unstated APR, finance term, down payment, eligibility rule, fee, amount, or condition. Preserve a short, exact, contiguous source excerpt for every claim and use the supplied default locator label. Use 1-based page numbers for PDFs and no page number for images or pasted text.\n\nSet arithmeticRole to component_charge only for a stated line item that contributes to the quoted total, component_discount only for a discount explicitly subtracted from that total, and stated_total only for the source's quoted total. When the same price is repeated inside one source, make only the itemized worksheet occurrence an arithmetic component; repeated corroborating mentions must be informational so the amount is not double-counted. Use included or informational for rebates already included in a selling price and for financing illustrations. Polarity must agree with that role. Every claim that states a currency amount needs a currency-string value and matching integer amountCents, including included and informational claims.\n\nCopy an explicit qualification into condition. Mark unresolved true only when the source itself leaves that claim's meaning or qualification unclear. Do not calculate totals, compare prices, score coverage, judge fairness, characterize fraud or legality, give legal or financial advice, or say whether anyone should buy or sign. Put concise missing-term questions in clarificationPoints, but do not compose or send a message.",
    "input": [
      {
        "role": "user",
        "content": [
          {
            "type": "input_text",
            "text": "Extract source-linked vehicle quote evidence from this one source.\nSource name: synthetic-vague-dealer-message.txt\nSource kind: text\nDefault locator label: Dealer message"
          },
          {
            "type": "input_text",
            "text": "SYNTHETIC DEALER MESSAGE - NOT A REAL MESSAGE\nReference: LIVE-VAGUE-002\nWe can probably get you near $625 per month with a $2,000 down payment if approved.\nI do not have the APR, number of payments, fees, or a written out-the-door total yet."
          }
        ]
      }
    ],
    "reasoning": { "effort": "low" },
    "max_output_tokens": 512,
    "truncation": "disabled",
    "text": {
      "format": {
        "type": "json_schema",
        "name": "termstrail_source_extraction",
        "description": "Explicit source-linked claims from one synthetic vehicle quote source.",
        "strict": true,
        "schema": {
          "type": "object",
          "properties": {
            "claims": {
              "maxItems": 80,
              "type": "array",
              "items": {
                "anyOf": [
                  {
                    "type": "object",
                    "properties": {
                      "label": {
                        "type": "string",
                        "minLength": 1,
                        "maxLength": 100
                      },
                      "polarity": {
                        "type": "string",
                        "enum": ["charge", "discount", "neutral"]
                      },
                      "locator": {
                        "type": "object",
                        "properties": {
                          "label": {
                            "type": "string",
                            "minLength": 1,
                            "maxLength": 100
                          },
                          "page": {
                            "anyOf": [
                              {
                                "type": "integer",
                                "exclusiveMinimum": 0,
                                "maximum": 9007199254740991
                              },
                              { "type": "null" }
                            ]
                          }
                        },
                        "required": ["label", "page"],
                        "additionalProperties": false
                      },
                      "excerpt": {
                        "type": "string",
                        "minLength": 1,
                        "maxLength": 280
                      },
                      "confidence": {
                        "type": "number",
                        "minimum": 0,
                        "maximum": 1
                      },
                      "condition": {
                        "anyOf": [
                          {
                            "type": "string",
                            "minLength": 1,
                            "maxLength": 280
                          },
                          { "type": "null" }
                        ]
                      },
                      "unresolved": { "type": "boolean" },
                      "field": {
                        "type": "string",
                        "enum": [
                          "selling_price",
                          "dealer_fee",
                          "tax",
                          "government_charge",
                          "incentive",
                          "stated_total",
                          "monthly_payment",
                          "due_at_signing",
                          "down_payment",
                          "trade_allowance",
                          "trade_payoff",
                          "dealer_product",
                          "service_contract"
                        ]
                      },
                      "value": {
                        "type": "string",
                        "minLength": 1,
                        "maxLength": 80,
                        "pattern": "^(?:-\\s*)?(?:\\$\\s*)?\\d[\\d,]*(?:\\.\\d{1,2})?$|^\\(\\s*(?:\\$\\s*)?\\d[\\d,]*(?:\\.\\d{1,2})?\\s*\\)$"
                      },
                      "amountCents": {
                        "type": "integer",
                        "minimum": -9007199254740991,
                        "maximum": 9007199254740991
                      },
                      "arithmeticRole": {
                        "type": "string",
                        "enum": ["component_charge"]
                      }
                    },
                    "required": [
                      "label",
                      "polarity",
                      "locator",
                      "excerpt",
                      "confidence",
                      "condition",
                      "unresolved",
                      "field",
                      "value",
                      "amountCents",
                      "arithmeticRole"
                    ],
                    "additionalProperties": false
                  },
                  {
                    "type": "object",
                    "properties": {
                      "label": {
                        "type": "string",
                        "minLength": 1,
                        "maxLength": 100
                      },
                      "polarity": {
                        "type": "string",
                        "enum": ["charge", "discount", "neutral"]
                      },
                      "locator": {
                        "type": "object",
                        "properties": {
                          "label": {
                            "type": "string",
                            "minLength": 1,
                            "maxLength": 100
                          },
                          "page": {
                            "anyOf": [
                              {
                                "type": "integer",
                                "exclusiveMinimum": 0,
                                "maximum": 9007199254740991
                              },
                              { "type": "null" }
                            ]
                          }
                        },
                        "required": ["label", "page"],
                        "additionalProperties": false
                      },
                      "excerpt": {
                        "type": "string",
                        "minLength": 1,
                        "maxLength": 280
                      },
                      "confidence": {
                        "type": "number",
                        "minimum": 0,
                        "maximum": 1
                      },
                      "condition": {
                        "anyOf": [
                          {
                            "type": "string",
                            "minLength": 1,
                            "maxLength": 280
                          },
                          { "type": "null" }
                        ]
                      },
                      "unresolved": { "type": "boolean" },
                      "field": {
                        "type": "string",
                        "enum": [
                          "selling_price",
                          "dealer_fee",
                          "tax",
                          "government_charge",
                          "incentive",
                          "stated_total",
                          "monthly_payment",
                          "due_at_signing",
                          "down_payment",
                          "trade_allowance",
                          "trade_payoff",
                          "dealer_product",
                          "service_contract"
                        ]
                      },
                      "value": {
                        "type": "string",
                        "minLength": 1,
                        "maxLength": 80,
                        "pattern": "^(?:-\\s*)?(?:\\$\\s*)?\\d[\\d,]*(?:\\.\\d{1,2})?$|^\\(\\s*(?:\\$\\s*)?\\d[\\d,]*(?:\\.\\d{1,2})?\\s*\\)$"
                      },
                      "amountCents": {
                        "type": "integer",
                        "minimum": -9007199254740991,
                        "maximum": 9007199254740991
                      },
                      "arithmeticRole": {
                        "type": "string",
                        "enum": ["component_discount"]
                      }
                    },
                    "required": [
                      "label",
                      "polarity",
                      "locator",
                      "excerpt",
                      "confidence",
                      "condition",
                      "unresolved",
                      "field",
                      "value",
                      "amountCents",
                      "arithmeticRole"
                    ],
                    "additionalProperties": false
                  },
                  {
                    "type": "object",
                    "properties": {
                      "label": {
                        "type": "string",
                        "minLength": 1,
                        "maxLength": 100
                      },
                      "polarity": {
                        "type": "string",
                        "enum": ["charge", "discount", "neutral"]
                      },
                      "locator": {
                        "type": "object",
                        "properties": {
                          "label": {
                            "type": "string",
                            "minLength": 1,
                            "maxLength": 100
                          },
                          "page": {
                            "anyOf": [
                              {
                                "type": "integer",
                                "exclusiveMinimum": 0,
                                "maximum": 9007199254740991
                              },
                              { "type": "null" }
                            ]
                          }
                        },
                        "required": ["label", "page"],
                        "additionalProperties": false
                      },
                      "excerpt": {
                        "type": "string",
                        "minLength": 1,
                        "maxLength": 280
                      },
                      "confidence": {
                        "type": "number",
                        "minimum": 0,
                        "maximum": 1
                      },
                      "condition": {
                        "anyOf": [
                          {
                            "type": "string",
                            "minLength": 1,
                            "maxLength": 280
                          },
                          { "type": "null" }
                        ]
                      },
                      "unresolved": { "type": "boolean" },
                      "field": {
                        "type": "string",
                        "enum": [
                          "selling_price",
                          "dealer_fee",
                          "tax",
                          "government_charge",
                          "incentive",
                          "stated_total",
                          "monthly_payment",
                          "due_at_signing",
                          "down_payment",
                          "trade_allowance",
                          "trade_payoff",
                          "dealer_product",
                          "service_contract"
                        ]
                      },
                      "value": {
                        "type": "string",
                        "minLength": 1,
                        "maxLength": 80,
                        "pattern": "^(?:-\\s*)?(?:\\$\\s*)?\\d[\\d,]*(?:\\.\\d{1,2})?$|^\\(\\s*(?:\\$\\s*)?\\d[\\d,]*(?:\\.\\d{1,2})?\\s*\\)$"
                      },
                      "amountCents": {
                        "type": "integer",
                        "minimum": -9007199254740991,
                        "maximum": 9007199254740991
                      },
                      "arithmeticRole": {
                        "type": "string",
                        "enum": ["included"]
                      }
                    },
                    "required": [
                      "label",
                      "polarity",
                      "locator",
                      "excerpt",
                      "confidence",
                      "condition",
                      "unresolved",
                      "field",
                      "value",
                      "amountCents",
                      "arithmeticRole"
                    ],
                    "additionalProperties": false
                  },
                  {
                    "type": "object",
                    "properties": {
                      "label": {
                        "type": "string",
                        "minLength": 1,
                        "maxLength": 100
                      },
                      "polarity": {
                        "type": "string",
                        "enum": ["charge", "discount", "neutral"]
                      },
                      "locator": {
                        "type": "object",
                        "properties": {
                          "label": {
                            "type": "string",
                            "minLength": 1,
                            "maxLength": 100
                          },
                          "page": {
                            "anyOf": [
                              {
                                "type": "integer",
                                "exclusiveMinimum": 0,
                                "maximum": 9007199254740991
                              },
                              { "type": "null" }
                            ]
                          }
                        },
                        "required": ["label", "page"],
                        "additionalProperties": false
                      },
                      "excerpt": {
                        "type": "string",
                        "minLength": 1,
                        "maxLength": 280
                      },
                      "confidence": {
                        "type": "number",
                        "minimum": 0,
                        "maximum": 1
                      },
                      "condition": {
                        "anyOf": [
                          {
                            "type": "string",
                            "minLength": 1,
                            "maxLength": 280
                          },
                          { "type": "null" }
                        ]
                      },
                      "unresolved": { "type": "boolean" },
                      "field": {
                        "type": "string",
                        "enum": [
                          "selling_price",
                          "dealer_fee",
                          "tax",
                          "government_charge",
                          "incentive",
                          "stated_total",
                          "monthly_payment",
                          "due_at_signing",
                          "down_payment",
                          "trade_allowance",
                          "trade_payoff",
                          "dealer_product",
                          "service_contract"
                        ]
                      },
                      "value": {
                        "type": "string",
                        "minLength": 1,
                        "maxLength": 80,
                        "pattern": "^(?:-\\s*)?(?:\\$\\s*)?\\d[\\d,]*(?:\\.\\d{1,2})?$|^\\(\\s*(?:\\$\\s*)?\\d[\\d,]*(?:\\.\\d{1,2})?\\s*\\)$"
                      },
                      "amountCents": {
                        "type": "integer",
                        "minimum": -9007199254740991,
                        "maximum": 9007199254740991
                      },
                      "arithmeticRole": {
                        "type": "string",
                        "enum": ["informational"]
                      }
                    },
                    "required": [
                      "label",
                      "polarity",
                      "locator",
                      "excerpt",
                      "confidence",
                      "condition",
                      "unresolved",
                      "field",
                      "value",
                      "amountCents",
                      "arithmeticRole"
                    ],
                    "additionalProperties": false
                  },
                  {
                    "type": "object",
                    "properties": {
                      "label": {
                        "type": "string",
                        "minLength": 1,
                        "maxLength": 100
                      },
                      "polarity": {
                        "type": "string",
                        "enum": ["charge", "discount", "neutral"]
                      },
                      "locator": {
                        "type": "object",
                        "properties": {
                          "label": {
                            "type": "string",
                            "minLength": 1,
                            "maxLength": 100
                          },
                          "page": {
                            "anyOf": [
                              {
                                "type": "integer",
                                "exclusiveMinimum": 0,
                                "maximum": 9007199254740991
                              },
                              { "type": "null" }
                            ]
                          }
                        },
                        "required": ["label", "page"],
                        "additionalProperties": false
                      },
                      "excerpt": {
                        "type": "string",
                        "minLength": 1,
                        "maxLength": 280
                      },
                      "confidence": {
                        "type": "number",
                        "minimum": 0,
                        "maximum": 1
                      },
                      "condition": {
                        "anyOf": [
                          {
                            "type": "string",
                            "minLength": 1,
                            "maxLength": 280
                          },
                          { "type": "null" }
                        ]
                      },
                      "unresolved": { "type": "boolean" },
                      "field": {
                        "type": "string",
                        "enum": [
                          "selling_price",
                          "dealer_fee",
                          "tax",
                          "government_charge",
                          "incentive",
                          "stated_total",
                          "monthly_payment",
                          "due_at_signing",
                          "down_payment",
                          "trade_allowance",
                          "trade_payoff",
                          "dealer_product",
                          "service_contract"
                        ]
                      },
                      "value": {
                        "type": "string",
                        "minLength": 1,
                        "maxLength": 80,
                        "pattern": "^(?:-\\s*)?(?:\\$\\s*)?\\d[\\d,]*(?:\\.\\d{1,2})?$|^\\(\\s*(?:\\$\\s*)?\\d[\\d,]*(?:\\.\\d{1,2})?\\s*\\)$"
                      },
                      "amountCents": {
                        "type": "integer",
                        "minimum": -9007199254740991,
                        "maximum": 9007199254740991
                      },
                      "arithmeticRole": {
                        "type": "string",
                        "enum": ["stated_total"]
                      }
                    },
                    "required": [
                      "label",
                      "polarity",
                      "locator",
                      "excerpt",
                      "confidence",
                      "condition",
                      "unresolved",
                      "field",
                      "value",
                      "amountCents",
                      "arithmeticRole"
                    ],
                    "additionalProperties": false
                  },
                  {
                    "type": "object",
                    "properties": {
                      "label": {
                        "type": "string",
                        "minLength": 1,
                        "maxLength": 100
                      },
                      "polarity": {
                        "type": "string",
                        "enum": ["charge", "discount", "neutral"]
                      },
                      "locator": {
                        "type": "object",
                        "properties": {
                          "label": {
                            "type": "string",
                            "minLength": 1,
                            "maxLength": 100
                          },
                          "page": {
                            "anyOf": [
                              {
                                "type": "integer",
                                "exclusiveMinimum": 0,
                                "maximum": 9007199254740991
                              },
                              { "type": "null" }
                            ]
                          }
                        },
                        "required": ["label", "page"],
                        "additionalProperties": false
                      },
                      "excerpt": {
                        "type": "string",
                        "minLength": 1,
                        "maxLength": 280
                      },
                      "confidence": {
                        "type": "number",
                        "minimum": 0,
                        "maximum": 1
                      },
                      "condition": {
                        "anyOf": [
                          {
                            "type": "string",
                            "minLength": 1,
                            "maxLength": 280
                          },
                          { "type": "null" }
                        ]
                      },
                      "unresolved": { "type": "boolean" },
                      "field": {
                        "type": "string",
                        "enum": [
                          "vehicle_identity",
                          "vehicle_reference",
                          "buyer_identity",
                          "price_basis",
                          "dealer_product",
                          "product_optionality",
                          "incentive_treatment",
                          "incentive_eligibility",
                          "finance_term",
                          "apr",
                          "cash_price_separation",
                          "trade_separation",
                          "service_contract"
                        ]
                      },
                      "value": {
                        "anyOf": [
                          {
                            "type": "string",
                            "minLength": 1,
                            "maxLength": 280
                          },
                          { "type": "number" },
                          { "type": "boolean" }
                        ]
                      },
                      "amountCents": { "type": "null" },
                      "arithmeticRole": {
                        "type": "string",
                        "enum": ["included"]
                      }
                    },
                    "required": [
                      "label",
                      "polarity",
                      "locator",
                      "excerpt",
                      "confidence",
                      "condition",
                      "unresolved",
                      "field",
                      "value",
                      "amountCents",
                      "arithmeticRole"
                    ],
                    "additionalProperties": false
                  },
                  {
                    "type": "object",
                    "properties": {
                      "label": {
                        "type": "string",
                        "minLength": 1,
                        "maxLength": 100
                      },
                      "polarity": {
                        "type": "string",
                        "enum": ["charge", "discount", "neutral"]
                      },
                      "locator": {
                        "type": "object",
                        "properties": {
                          "label": {
                            "type": "string",
                            "minLength": 1,
                            "maxLength": 100
                          },
                          "page": {
                            "anyOf": [
                              {
                                "type": "integer",
                                "exclusiveMinimum": 0,
                                "maximum": 9007199254740991
                              },
                              { "type": "null" }
                            ]
                          }
                        },
                        "required": ["label", "page"],
                        "additionalProperties": false
                      },
                      "excerpt": {
                        "type": "string",
                        "minLength": 1,
                        "maxLength": 280
                      },
                      "confidence": {
                        "type": "number",
                        "minimum": 0,
                        "maximum": 1
                      },
                      "condition": {
                        "anyOf": [
                          {
                            "type": "string",
                            "minLength": 1,
                            "maxLength": 280
                          },
                          { "type": "null" }
                        ]
                      },
                      "unresolved": { "type": "boolean" },
                      "field": {
                        "type": "string",
                        "enum": [
                          "vehicle_identity",
                          "vehicle_reference",
                          "buyer_identity",
                          "price_basis",
                          "dealer_product",
                          "product_optionality",
                          "incentive_treatment",
                          "incentive_eligibility",
                          "finance_term",
                          "apr",
                          "cash_price_separation",
                          "trade_separation",
                          "service_contract"
                        ]
                      },
                      "value": {
                        "anyOf": [
                          {
                            "type": "string",
                            "minLength": 1,
                            "maxLength": 280
                          },
                          { "type": "number" },
                          { "type": "boolean" }
                        ]
                      },
                      "amountCents": { "type": "null" },
                      "arithmeticRole": {
                        "type": "string",
                        "enum": ["informational"]
                      }
                    },
                    "required": [
                      "label",
                      "polarity",
                      "locator",
                      "excerpt",
                      "confidence",
                      "condition",
                      "unresolved",
                      "field",
                      "value",
                      "amountCents",
                      "arithmeticRole"
                    ],
                    "additionalProperties": false
                  }
                ]
              }
            },
            "clarificationPoints": {
              "maxItems": 12,
              "type": "array",
              "items": { "type": "string", "minLength": 1, "maxLength": 280 }
            }
          },
          "required": ["claims", "clarificationPoints"],
          "additionalProperties": false
        }
      }
    }
  },
  "requestIntegrity": {
    "requestJsonBytes": 12151,
    "requestBuilderOrderSha256": "d4b37c67bebc1d4a9bd2d626aae82edacb42466852d393fee05641dda8059eee",
    "requestCanonicalSha256": "49ed02905af5e0cd96b5b30cc95e0f86509d8524d1ac0bea9bced714553bf5c7",
    "instructionsCharacters": 1603,
    "instructionsSha256": "ede662ff9ddbbedce4c1469fecbc81cd3a65484211587fb513b07e7cd2a165d3",
    "schemaPath": "evals/live/provenance/qualification-v3-correction-json-schema.json",
    "schemaFileSha256": "ddf6c3a463cdb291ed6233a05c887e6394eba95b29c40cd5315315293bf3d55d",
    "schemaCanonicalJsonSha256": "b3c4b944c842a11f321118e7bb44e0efe6a98055df9952947da606795bca3e1b",
    "toolsPropertyPresent": false
  },
  "reservation": {
    "requestUtf8Bytes": 12151,
    "framingTokenBuffer": 512,
    "conservativeInputTokenUpperBound": 12663,
    "maximumCostUsd": 0.09450375
  },
  "codeFingerprint": {
    "algorithm": "sha256",
    "aggregate": "f88ee81bf5ee8dee82a72bd07ecc5da31155fe887486e2abf97d867caf6e5ae8",
    "construction": "Sort paths with JavaScript Array.sort(); for each path hash UTF-8 path bytes, one NUL byte, exact file bytes, and one NUL byte.",
    "files": [
      {
        "path": "evals/live/fixtures/qualification-fixtures.json",
        "sha256": "aa85e9c601128f840490ea2c2021b9289a8329364fd2f896737a1892b9945f2f"
      },
      {
        "path": "evals/live/provenance/qualification-v3-correction-json-schema.json",
        "sha256": "ddf6c3a463cdb291ed6233a05c887e6394eba95b29c40cd5315315293bf3d55d"
      },
      {
        "path": "package-lock.json",
        "sha256": "7398f4165cf6dfe0048cba8d34fd8f18b2d3514ed5e1e38ec99d9d0f2a571125"
      },
      {
        "path": "package.json",
        "sha256": "9240bebe7a120824734a7dfc54a5767a8ea4b036e487427bbdcf1c4a4c811190"
      },
      {
        "path": "scripts/live-correction-check.ts",
        "sha256": "67823e2f2a285a0db9a01aac5e4d2e9a62e403f620ac866bdec44a2cc60db01c"
      },
      {
        "path": "scripts/materialize-live-correction.ts",
        "sha256": "0bb9a38b722f670453ea1060ab7fdc400934eec60c9f014b21c1be60a0c400e9"
      },
      {
        "path": "scripts/write-v3-correction-contract.ts",
        "sha256": "547d8c9fb3cb7461758cc3fa176b004def7745a9804cdb14c411aa063882c205"
      },
      {
        "path": "src/app/api/live-extract/route.ts",
        "sha256": "ec35bbc15bfb31b3e7d2f136c1f5d43567034c190cda0bbd0dff23151d58ccbe"
      },
      {
        "path": "src/domain/currency.ts",
        "sha256": "d93dfb09e6fa189a7285e1292857985438a96ba37aefd67729fcec915d0af7b6"
      },
      {
        "path": "src/domain/schema.ts",
        "sha256": "2be2f9c77765e71af2877df7107c5bbeb75f00b81171bb1b855c7817f650c811"
      },
      {
        "path": "src/evaluation/live-correction-contract.ts",
        "sha256": "b3620b991fef4c839bdfe3b5b0f8cd36e299806d4423cecd0bf11a841b6d9370"
      },
      {
        "path": "src/evaluation/live-correction.ts",
        "sha256": "f1f47049d88b482eb5bbddbb09d62a43c87010f4245a32e4b26c44033ab6dcef"
      },
      {
        "path": "src/evaluation/live-qualification.ts",
        "sha256": "d98e566be2e6a922e08fdc7474c8775b18332c38574533f2bc887cfc77ee17a6"
      },
      {
        "path": "src/evaluation/provenance-utils.ts",
        "sha256": "7d0bd6aafdd75430a2b8929ca8db10f00c04547eb9840abac897227332a8a086"
      },
      {
        "path": "src/live/cache.ts",
        "sha256": "3c97c467e8b5da4bbba7baa60954a0291e7ed7aa439a8e196d1182089e8d2fef"
      },
      {
        "path": "src/live/config.ts",
        "sha256": "f4f4d88aad3c0841e773d81dbc834308c93ea4360e982fad6b0dd4e52a4d361f"
      },
      {
        "path": "src/live/errors.ts",
        "sha256": "c7b4c8cb01d8260f2ffe69c6f011dedd041e68d2a645628582608b1b5dde8347"
      },
      {
        "path": "src/live/evidence.ts",
        "sha256": "93de3d9e43137465d185554deda2213ac8a07dbfabba03592e3b4a209e9a20f2"
      },
      {
        "path": "src/live/model-schema.ts",
        "sha256": "d80def8cd66e5dda0ba2bb62e02cc8fbd615f4d771d92e25e06e7e6f83385135"
      },
      {
        "path": "src/live/multipart.ts",
        "sha256": "1a841b36c863d40865181c1d077a2415055b08fe4a049cd0dcc868b51f728541"
      },
      {
        "path": "src/live/openai-transport.ts",
        "sha256": "f9b15414d174a906f22ff7b1233f81d91221e4998cae1e0943d5a38f9aa33ab4"
      },
      {
        "path": "src/live/prompt.ts",
        "sha256": "bc79b02e2bca15f63736e1a823da019b2c5b6da5801538aa28a2a4cc328d771a"
      },
      {
        "path": "src/live/provider-factory.ts",
        "sha256": "8599b28e70481df32caac4594c516f26f23357f076647a09fda32e369c9afd2b"
      },
      {
        "path": "src/live/run-log.ts",
        "sha256": "ad4c355e42646378a996f3393169c7334c6468332a6292e5c46f7daab64dd0df"
      },
      {
        "path": "src/live/source.ts",
        "sha256": "fa52fe50d2bc9343322d6ce4df3e438a90a28f222ca295ca762f40c89024aac3"
      },
      {
        "path": "src/live/types.ts",
        "sha256": "7dfcefcbb521de15bc3ffd6ca6127abea3c49336539637f64e1d6e610fd47411"
      },
      {
        "path": "src/providers/openai-provider.ts",
        "sha256": "091242b9f57c6572edb283ca373f31d82d8c258c57c3a78176e78f71b182a3d3"
      }
    ]
  },
  "materializationEvidence": {
    "oneTimeLockRequired": true,
    "lockSha256Committed": true,
    "exactPurposeRunLogSha256Committed": true,
    "exactStartedSucceededPairRequired": true,
    "providerResponseIdCommitted": false
  },
  "safety": {
    "syntheticOnly": true,
    "storedByProvider": false,
    "automaticRetries": 0,
    "paidCallsFromCi": 0,
    "apiRequestsMadeToCreateContract": 0,
    "secretsIncluded": false,
    "providerResponseIdentifiersIncluded": false,
    "broaderLiveSuiteResumed": false
  }
}
