File tree Expand file tree Collapse file tree 7 files changed +7
-11
lines changed
ee/onyx/background/celery/tasks/external_group_syncing
tools/tool_implementations/custom Expand file tree Collapse file tree 7 files changed +7
-11
lines changed Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ def _is_external_group_sync_due(cc_pair: ConnectorCredentialPair) -> bool:
93
93
94
94
if cc_pair .access_type != AccessType .SYNC :
95
95
task_logger .error (
96
- f"Recieved non-sync CC Pair { cc_pair .id } for external "
96
+ f"Received non-sync CC Pair { cc_pair .id } for external "
97
97
f"group sync. Actual access type: { cc_pair .access_type } "
98
98
)
99
99
return False
Original file line number Diff line number Diff line change @@ -168,8 +168,8 @@ def _fetch_transcripts(
168
168
if response .status_code == 204 :
169
169
break
170
170
171
- recieved_transcripts = response .json ()
172
- parsed_transcripts = recieved_transcripts .get ("data" , {}).get (
171
+ received_transcripts = response .json ()
172
+ parsed_transcripts = received_transcripts .get ("data" , {}).get (
173
173
"transcripts" , []
174
174
)
175
175
Original file line number Diff line number Diff line change @@ -206,7 +206,7 @@ def get_args_for_non_tool_calling_llm(
206
206
207
207
# pretend like nothing happened if not parse-able
208
208
logger .error (
209
- f"Failed to parse args for '{ self .name } ' tool. Recieved : { args_result_str } "
209
+ f"Failed to parse args for '{ self .name } ' tool. Received : { args_result_str } "
210
210
)
211
211
return None
212
212
Original file line number Diff line number Diff line change @@ -237,7 +237,6 @@ services:
237
237
- ONYX_BOT_FEEDBACK_VISIBILITY=${ONYX_BOT_FEEDBACK_VISIBILITY:-}
238
238
- ONYX_BOT_DISPLAY_ERROR_MSGS=${ONYX_BOT_DISPLAY_ERROR_MSGS:-}
239
239
- ONYX_BOT_RESPOND_EVERY_CHANNEL=${ONYX_BOT_RESPOND_EVERY_CHANNEL:-}
240
- - ONYX_BOT_DISABLE_COT=${ONYX_BOT_DISABLE_COT:-} # Currently unused
241
240
- NOTIFY_SLACKBOT_NO_ANSWER=${NOTIFY_SLACKBOT_NO_ANSWER:-}
242
241
- ONYX_BOT_MAX_QPM=${ONYX_BOT_MAX_QPM:-}
243
242
- ONYX_BOT_MAX_WAIT_TIME=${ONYX_BOT_MAX_WAIT_TIME:-}
Original file line number Diff line number Diff line change @@ -271,7 +271,7 @@ services:
271
271
max-file : " 6"
272
272
# The specified script waits for the api_server to start up.
273
273
# Without this we've seen issues where nginx shows no error logs but
274
- # does not recieve any traffic
274
+ # does not receive any traffic
275
275
# NOTE: we have to use dos2unix to remove Carriage Return chars from the file
276
276
# in order to make this work on both Unix-like systems and windows
277
277
# PRODUCTION: Change to app.conf.template.prod for production nginx config
Original file line number Diff line number Diff line change @@ -104,7 +104,6 @@ DISABLE_MODEL_SERVER=false
104
104
# ONYX_BOT_FEEDBACK_VISIBILITY=
105
105
# ONYX_BOT_DISPLAY_ERROR_MSGS=
106
106
# ONYX_BOT_RESPOND_EVERY_CHANNEL=
107
- # ONYX_BOT_DISABLE_COT=
108
107
# NOTIFY_SLACKBOT_NO_ANSWER=
109
108
# ONYX_BOT_MAX_QPM=
110
109
# ONYX_BOT_MAX_WAIT_TIME=
@@ -152,8 +151,6 @@ DISABLE_MODEL_SERVER=false
152
151
# USE_SEMANTIC_KEYWORD_EXPANSIONS_BASIC_SEARCH=
153
152
154
153
## Model Configuration
155
- MODEL_SERVER_HOST=inference_model_server
156
- INDEXING_MODEL_SERVER_HOST=indexing_model_server
157
154
# EMBEDDING_BATCH_SIZE=
158
155
# DOCUMENT_ENCODER_MODEL=
159
156
# DOC_EMBEDDING_DIM=
@@ -207,9 +204,10 @@ INDEXING_MODEL_SERVER_HOST=indexing_model_server
207
204
# NEXT_PUBLIC_DO_NOT_USE_TOGGLE_OFF_DANSWER_POWERED=
208
205
# NEXT_PUBLIC_CUSTOM_REFRESH_URL=
209
206
210
- ## Pointer to services, you should have no reason to change these
207
+ ## Pointer to services
211
208
POSTGRES_HOST=relational_db
212
209
VESPA_HOST=index
213
210
REDIS_HOST=cache
214
211
MODEL_SERVER_HOST=inference_model_server
212
+ INDEXING_MODEL_SERVER_HOST=indexing_model_server
215
213
INTERNAL_URL=http://api_server:8080
Original file line number Diff line number Diff line change @@ -856,7 +856,6 @@ configMap:
856
856
ONYX_BOT_DISABLE_DOCS_ONLY_ANSWER : " "
857
857
ONYX_BOT_DISPLAY_ERROR_MSGS : " "
858
858
ONYX_BOT_RESPOND_EVERY_CHANNEL : " "
859
- ONYX_BOT_DISABLE_COT : " "
860
859
NOTIFY_SLACKBOT_NO_ANSWER : " "
861
860
# Logging
862
861
# Optional Telemetry, please keep it on (nothing sensitive is collected)? <3
You can’t perform that action at this time.
0 commit comments