File tree 3 files changed +31
-0
lines changed
3 files changed +31
-0
lines changed Original file line number Diff line number Diff line change @@ -51,3 +51,11 @@ PDF2MD_URL="http://localhost:8081"
51
51
BATCH_CHUNK_LIMIT=120
52
52
CHAT_COMPLETION_TIMEOUT_SECS=10
53
53
YOUTUBE_API_KEY=""
54
+
55
+ SEARCH_COMPONENT_URL="http://localhost:8000"
56
+ PAGEFIND_CDN_BASE_URL="https://pagefind-testing-index.trieve.ai"
57
+ S3_ENDPOINT_PAGEFIND=https://pagefind-index-west.s3.us-west-1.amazonaws.com
58
+ S3_ACCESS_KEY_PAGEFIND=**************
59
+ S3_SECRET_KEY_PAGEFIND=****************************************
60
+ S3_BUCKET_PAGEFIND=pagefind-index-west
61
+ AWS_REGION_PAGEFIND=us-west-1
Original file line number Diff line number Diff line change 52
52
{{- if .Values.config.s3.region }}
53
53
AWS_REGION : {{ .Values.config.s3.region }}
54
54
{{- end }}
55
+ {{- if .Values.config.pagefind_s3.endpoint }}
56
+ S3_ENDPOINT_PAGEFIND : {{ .Values.config.pagefind_s3.endpoint }}
57
+ {{- end }}
58
+ {{- if .Values.config.pagefind_s3.accessKey }}
59
+ S3_ACCESS_KEY_PAGEFIND : {{ .Values.config.pagefind_s3.accessKey }}
60
+ {{- end }}
61
+ {{- if .Values.config.pagefind_s3.secretKey }}
62
+ S3_SECRET_KEY_PAGEFIND : {{ .Values.config.pagefind_s3.secretKey }}
63
+ {{- end }}
64
+ {{- if .Values.config.pagefind_s3.bucket }}
65
+ S3_BUCKET_PAGEFIND : {{ .Values.config.pagefind_s3.bucket }}
66
+ {{- end }}
67
+ {{- if .Values.config.pagefind_s3.region }}
68
+ AWS_REGION_PAGEFIND : {{ .Values.config.pagefind_s3.region }}
69
+ {{- end }}
55
70
COOKIE_SECURE : {{ .Values.config.trieve.cookieSecure | quote }}
56
71
TIKA_URL : tika.default.svc.cluster.local
57
72
OPENAI_BASE_URL : {{ .Values.config.openai.baseUrl }}
90
105
{{- if .Values.config.trieve.youtubeApiKey }}
91
106
YOUTUBE_API_KEY : {{ .Values.config.trieve.youtubeApiKey | quote }}
92
107
{{- end }}
108
+ PAGEFIND_CDN_BASE_URL : {{ .Values.config.trieve.pagefindCdnUrl }}
Original file line number Diff line number Diff line change @@ -124,6 +124,7 @@ config:
124
124
dittofeedApiKey : " "
125
125
useSubtrace : false
126
126
youtubeApiKey : " "
127
+ pagefindCdnUrl : " "
127
128
oidc :
128
129
clientSecret : " YllmLDTy67MbsUBrUAWvQ7z9aMq0QcKx"
129
130
clientId : " trieve"
@@ -145,6 +146,12 @@ config:
145
146
secretKey : " "
146
147
bucket : " "
147
148
region : " "
149
+ pagefind_s3 :
150
+ endpoint : " "
151
+ accessKey : " "
152
+ secretKey : " "
153
+ bucket : " "
154
+ region : " "
148
155
stripe :
149
156
secret : " "
150
157
webhookSecret : " "
You can’t perform that action at this time.
0 commit comments