Initial Commit

This commit is contained in:
2026-09-16 17:22:14 +09:00
commit 858ee9e9da
335 changed files with 123898 additions and 0 deletions
@@ -0,0 +1,20 @@
# 계약: POST /chat/stream
```ts
interface SnapImageInput {
mediaType: "image/png" | "image/jpeg" | "image/webp"
data: string
}
interface SnapStreamRequest {
sessionId: string
content: string
images?: SnapImageInput[]
forcedSkill?: string
explain?: boolean
}
```
- `content`가 비어 있으면 `images`가 한 장 이상이어야 함.
- `images` 생략 또는 빈 배열은 기존 텍스트 전용 요청과 같음.
- 이미지 원본은 응답과 과거 메시지 조회에 포함되지 않음.