-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmovie_index.yaml
54 lines (52 loc) · 1000 Bytes
/
movie_index.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
version: '0.1.0'
index:
name: movies
prefix: movie
storage_type: json
fields:
- name: id
type: numeric
- name: original_title
type: text
- name: original_language
type: tag
attrs:
sortable: true
- name: overview
type: text
- name: genres
type: tag
path: $.genres.*
- name: popularity
type: numeric
attrs:
sortable: true
- name: runtime
type: numeric
attrs:
sortable: true
- name: tagline
type: text
- name: budget
type: numeric
attrs:
sortable: true
- name: revenue
type: numeric
attrs:
sortable: true
- name: vote_count
type: numeric
attrs:
sortable: true
- name: vote_average
type: numeric
attrs:
sortable: true
- name: embedding
type: vector
attrs:
algorithm: flat
dims: 1536
distance_metric: cosine
datatype: float32