You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
f"[responses.process_response] OpenAI API error during response processing: {error_message}, project_id={request.project_id}, organization_id={organization_id}"
162
+
f"OpenAI API error during response processing: {error_message}, project_id={request.project_id}, organization_id={organization_id}"
f"[responses.process_response] Callback sent successfully, assistant={request.assistant_id}, project_id={request.project_id}, organization_id={organization_id}"
174
+
f"Callback sent successfully, assistant={request.assistant_id}, project_id={request.project_id}, organization_id={organization_id}"
170
175
)
171
176
172
177
@@ -179,7 +184,7 @@ async def responses(
179
184
):
180
185
"""Asynchronous endpoint that processes requests in background."""
181
186
logger.info(
182
-
f"[responses.responses] Processing response request for assistant_id={request.assistant_id}, project_id={request.project_id}, organization_id={_current_user.organization_id}"
187
+
f"Processing response request for assistant_id={request.assistant_id}, project_id={request.project_id}, organization_id={_current_user.organization_id}"
183
188
)
184
189
185
190
# Get assistant details
@@ -188,7 +193,7 @@ async def responses(
188
193
)
189
194
ifnotassistant:
190
195
logger.error(
191
-
f"[responses.responses] Assistant not found: assistant_id={request.assistant_id}, project_id={request.project_id}, organization_id={_current_user.organization_id}"
196
+
f"Assistant not found: assistant_id={request.assistant_id}, project_id={request.project_id}, organization_id={_current_user.organization_id}"
192
197
)
193
198
raiseHTTPException(
194
199
status_code=404,
@@ -203,7 +208,7 @@ async def responses(
203
208
)
204
209
ifnotcredentialsor"api_key"notincredentials:
205
210
logger.error(
206
-
f"[responses.responses] OpenAI API key not configured for org_id={_current_user.organization_id}, project_id={request.project_id}, organization_id={_current_user.organization_id}"
211
+
f"OpenAI API key not configured for org_id={_current_user.organization_id}, project_id={request.project_id}, organization_id={_current_user.organization_id}"
0 commit comments