rag-llm-proto
    rag-llm-proto
    • PDFファイルとQdrantポイントの関係
    • PDFファイル処理のシーケンス図
    • ファイル一覧取得
      GET
    • 新規ファイル追加
      POST
    • ファイル削除
      DELETE
    • 検索
      POST
    • スキーマ
      • PdfFileEntity
      • PdfContentEntity
      • PdfChunkEntity
      • ChunkPoint

      検索

      開発中
      POST
      /search
      ベクトル検索してPointを探して、それに該当するチャンクを返す。

      リクエストパラメータ

      リクエストボディパラメータapplication/json

      例

      レスポンス

      🟢200成功
      application/json
      ボディ

      リクエストリクエストExample
      Shell
      JavaScript
      Java
      Swift
      curl --location --request POST '/search' \
      --header 'Content-Type: application/json' \
      --data-raw '{
          "query": "string",
          "type": "string"
      }'
      レスポンスレスポンスExample
      [
          {
              "id": "string",
              "file_id": "8a0cfb4f-ddc9-436d-91bb-75133c583767",
              "payload": {
                  "type": "string"
              }
          }
      ]
      更新日時 2025-05-08 15:13:30
      前へ
      ファイル削除
      次へ
      PdfFileEntity
      Built with