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

      ファイル一覧取得

      開発中
      GET
      /files
      Request Request Example
      Shell
      JavaScript
      Java
      Swift
      curl --location --request GET '/files'
      Response Response Example
      [
          {
              "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
              "filename": "string",
              "filepath": "string",
              "size": "string",
              "contents": [
                  {
                      "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
                      "document_id": "string",
                      "content": "string",
                      "type": "string"
                  }
              ]
          }
      ]

      Requestパラメータ

      なし

      Response

      🟢200成功
      application/json
      Body
      array of:
      id
      string <uuid>
      必須
      ID番号
      filename
      string 
      必須
      filepath
      string 
      必須
      size
      string 
      必須
      contents
      array[object (PdfContentEntity) {4}] 
      処理ロジックごとの複数の
      必須
      id
      string <uuid>
      必須
      ID番号
      document_id
      string 
      必須
      content
      string 
      必須
      type
      string 
      処理ロジック
      必須
      更新日時 2025-05-08 14:34:30
      前へ
      PDFファイル処理のシーケンス図
      次へ
      新規ファイル追加
      Built with