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

      ファイル一覧取得

      開発中
      GET
      /files

      リクエストパラメータ

      なし

      レスポンス

      🟢200成功
      application/json
      ボディ

      リクエストリクエストExample
      Shell
      JavaScript
      Java
      Swift
      curl --location --request GET '/files'
      レスポンスレスポンス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"
                  }
              ]
          }
      ]
      更新日時 2025-05-08 14:34:30
      前へ
      PDFファイル処理のシーケンス図
      次へ
      新規ファイル追加
      Built with