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

      検索

      開発中
      POST
      /search
      ベクトル検索してPointを探して、それに該当するチャンクを返す。
      Request Request Example
      Shell
      JavaScript
      Java
      Swift
      curl --location --request POST '/search' \
      --header 'Content-Type: application/json' \
      --data-raw '{
          "query": "string",
          "type": "string"
      }'
      Response Response Example
      [
          {
              "id": "string",
              "file_id": "8a0cfb4f-ddc9-436d-91bb-75133c583767",
              "payload": {
                  "type": "string"
              }
          }
      ]

      Requestパラメータ

      Request Bodyパラメータapplication/json

      Examples

      Response

      🟢200成功
      application/json
      Body

      更新日時 2025-05-08 15:13:30
      前へ
      ファイル削除
      Built with