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
      query
      string 
      検索クエリ
      必須
      自然言語文字列
      type
      string 
      解析ロジックのパターン名
      必須
      どのロジックで処理されたデータを対象とするか指定する
      Examples

      Response

      🟢200成功
      application/json
      Body
      array of:
      id
      string 
      必須
      file_id
      string <uuid>
      必須
      PGで持つファイルと同じID
      payload
      object 
      必須
      未定
      type
      string 
      処理ロジック
      必須
      更新日時 2025-05-08 15:13:30
      前へ
      ファイル削除
      Built with