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