-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathswagger.yaml
83 lines (75 loc) · 2.23 KB
/
swagger.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
swagger: "2.0"
info:
version: "1.0.0"
title: "Video Duplicate Checker API"
paths:
/check-video-duplicate:
post:
tags:
- API для проверки дубликатов видео
summary: "Проверка видео на дублирование"
parameters:
- in: body
name: videoLink
required: true
schema:
$ref: "#/definitions/videoLinkRequest"
responses:
200:
description: "Результат проверки"
schema:
$ref: "#/definitions/videoLinkResponse"
400:
description: "Неверный запрос"
500:
description: "Ошибка сервера"
/insert-video-db:
post:
tags:
- API для внесения видео эмбеддингов в векторную базу данных
summary: "Внесение новых видео в бд"
parameters:
- in: body
name: videoLink
required: true
schema:
$ref: "#/definitions/videoLinkRequest"
responses:
200:
description: "Получнный эмбеддинг"
schema:
$ref: "#/definitions/videoInsertResponse"
400:
description: "Неверный запрос"
500:
description: "Ошибка сервера"
definitions:
videoLinkRequest:
type: object
properties:
link:
type: string
description: ссылка на видео
example: "https://example.com/video.mp4"
videoLinkResponse:
type: object
properties:
is_duplicate:
type: boolean
description: признак дублирования
example: false
duplicate_for:
type: string
description: идентификтаор видео в формате uuid4
enum:
- "0003d59f-89cb-4c5c-9156-6c5bc07c6fad"
- "000ab50a-e0bd-4577-9d21-f1f426144321"
videoInsertResponse:
type: object
properties:
embedding:
type: list
description: эмбеддинг видео
enum:
- [0.2, 0.3, 0.3, 0.1]
- [0.64, 0.35, 0.23, 0.01, 0]