1version: v1beta1
2kind: Spicepod
3name: tailwindcss
4
5runtime:
6 dataset_load_parallelism: 1
7
8datasets:
9 - from: github:github.com/tailwindlabs/tailwindcss.com/files/master
10 name: tailwindcss.docs
11 description: Tailwindcss documentation and reference, from https://tailwindcss.com
12 params:
13 file_format: md
14 github_client_id: ${secrets:GITHUB_CLIENT_ID}
15 github_private_key: ${secrets:GITHUB_PRIVATE_KEY}
16 github_installation_id: ${secrets:GITHUB_INSTALLATION_ID}
17 include: "src/pages/docs/**/*.mdx;"
18 acceleration:
19 enabled: true
20 refresh_check_interval: 4h
21 refresh_jitter_enabled: true
22 refresh_jitter_max: 15m
23 columns:
24 - name: content
25 embeddings:
26 - from: openai_embeddings
27 row_id:
28 - path
29 chunking:
30 enabled: true
31 target_chunk_size: 512
32 overlap_size: 128
33 trim_whitespace: true
34
35 - from: github:github.com/tailwindlabs/tailwindcss/issues
36 name: tailwindcss.issues
37 description: Tailwindcss GitHub issues from github.com/tailwindlabs/tailwindcss
38 time_column: created_at
39 params:
40 file_format: md
41 github_client_id: ${secrets:GITHUB_CLIENT_ID}
42 github_private_key: ${secrets:GITHUB_PRIVATE_KEY}
43 github_installation_id: ${secrets:GITHUB_INSTALLATION_ID}
44 acceleration:
45 enabled: true
46 refresh_mode: full
47 refresh_check_interval: 4h
48 refresh_jitter_enabled: true
49 refresh_jitter_max: 15m
50 # embeddings:
51 # - column: title
52 # column_pk:
53 # - id
54 # use: openai_embeddings
55
56embeddings:
57 - from: openai
58 name: openai_embeddings
59 params:
60 openai_api_key: ${ secrets:OPENAI_API_KEY }
61
1version: v1beta1
2kind: Spicepod
3name: tailwindcss
4
5runtime:
6 dataset_load_parallelism: 1
7
8datasets:
9 - from: github:github.com/tailwindlabs/tailwindcss.com/files/master
10 name: tailwindcss.docs
11 description: Tailwindcss documentation and reference, from https://tailwindcss.com
12 params:
13 file_format: md
14 github_client_id: ${secrets:GITHUB_CLIENT_ID}
15 github_private_key: ${secrets:GITHUB_PRIVATE_KEY}
16 github_installation_id: ${secrets:GITHUB_INSTALLATION_ID}
17 include: "src/pages/docs/**/*.mdx;"
18 acceleration:
19 enabled: true
20 refresh_check_interval: 4h
21 refresh_jitter_enabled: true
22 refresh_jitter_max: 15m
23 columns:
24 - name: content
25 embeddings:
26 - from: openai_embeddings
27 row_id:
28 - path
29 chunking:
30 enabled: true
31 target_chunk_size: 512
32 overlap_size: 128
33 trim_whitespace: true
34
35 - from: github:github.com/tailwindlabs/tailwindcss/issues
36 name: tailwindcss.issues
37 description: Tailwindcss GitHub issues from github.com/tailwindlabs/tailwindcss
38 time_column: created_at
39 params:
40 file_format: md
41 github_client_id: ${secrets:GITHUB_CLIENT_ID}
42 github_private_key: ${secrets:GITHUB_PRIVATE_KEY}
43 github_installation_id: ${secrets:GITHUB_INSTALLATION_ID}
44 acceleration:
45 enabled: true
46 refresh_mode: full
47 refresh_check_interval: 4h
48 refresh_jitter_enabled: true
49 refresh_jitter_max: 15m
50 # embeddings:
51 # - column: title
52 # column_pk:
53 # - id
54 # use: openai_embeddings
55
56embeddings:
57 - from: openai
58 name: openai_embeddings
59 params:
60 openai_api_key: ${ secrets:OPENAI_API_KEY }
61