{
  "llm": {
    "fixtures": "./rag-pipeline.json"
  },
  "vector": {
    "collections": [
      {
        "name": "knowledge-base",
        "dimension": 3,
        "vectors": [
          {
            "id": "doc-gravity",
            "values": [0.9, 0.1, 0.05],
            "metadata": {
              "source": "physics.pdf",
              "page": 12,
              "text": "Gravity is a fundamental force of nature that attracts objects with mass toward one another."
            }
          },
          {
            "id": "doc-orbits",
            "values": [0.75, 0.3, 0.15],
            "metadata": {
              "source": "physics.pdf",
              "page": 45,
              "text": "Orbital mechanics describes the motion of planets and satellites under gravitational influence."
            }
          },
          {
            "id": "doc-tides",
            "values": [0.6, 0.5, 0.2],
            "metadata": {
              "source": "physics.pdf",
              "page": 78,
              "text": "Tidal forces result from the differential gravitational pull of the Moon and Sun on Earth's oceans."
            }
          }
        ],
        "queryResults": [
          {
            "id": "doc-gravity",
            "score": 0.97,
            "metadata": {
              "source": "physics.pdf",
              "page": 12,
              "text": "Gravity is a fundamental force of nature that attracts objects with mass toward one another."
            }
          },
          {
            "id": "doc-orbits",
            "score": 0.82,
            "metadata": {
              "source": "physics.pdf",
              "page": 45,
              "text": "Orbital mechanics describes the motion of planets and satellites under gravitational influence."
            }
          }
        ]
      }
    ]
  }
}
