Storm OpenAPI
  1. STORM Parse
Storm OpenAPI
  • Overview
    • 주요 개념
    • API 연동을 위한 API Key 발급하기
    • 권한 관리
    • 에러 코드
    • 변경 이력
  • Apis
    • 에이전트
      • 에이전트 조회
      • 에이전트 배포
      • 에이전트 배포 이력 조회
    • 버킷
      • 버킷 생성
      • 버킷 조회
    • 문서
      • 문서 학습 요청 by file
      • 문서 학습 요청 by url
      • 문서 조회
      • 문서 삭제
    • 채팅
      • 채팅 전송 (non-stream)
      • 채팅 전송 (stream)
      • 컨텍스트 검색
    • STORM Parse
      • /convert/md
        POST
  1. STORM Parse

/convert/md

Developing
POST
/convert/rag
Last modified:2024-11-20 09:13:49

Convert Document (Markdown using RAG Prompt)#

STORM Parse 용 endpoint입니다
표나 그래프 등을 줄글로 파싱합니다
URL: /convert/rag
Method: POST
Description: Processes a document (PDF or image) using the RAG (retrieval-augmented generation) prompt for markdown generation.
Request Body:
file: The document to be processed (PDF, PNG, JPG, JPEG).
Response:
{
    "pages": [
        {
            "page_number": 1,
            "content": "Markdown content of page 1"
        },
        ...
    ]
}
Errors:
400: Invalid file type or missing file.
500: Internal server error during processing.

Request

Authorization
Add parameter in header
storm-api-key
Example:
storm-api-key: ********************
Body Params multipart/form-data

Responses

🟢200Success
application/json
Body

Example
{}
Modified at 2024-11-20 09:13:49
Previous
컨텍스트 검색
Built with