Add IBM copyright headers to compilable source files#1988
Conversation
|
Important Review skippedToo many files! This PR contains 686 files, which is 536 over the limit of 150. To get a review, narrow the scope: Upgrade to a paid plan to raise the limit. ⚙️ Run configurationConfiguration used: Path: .coderabbit.yaml Review profile: CHILL Plan: Pro Run ID: ⛔ Files ignored due to path filters (21)
📒 Files selected for processing (686)
You can disable this status message by setting the Use the checkbox below for a quick retry:
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
| return JSONResponse( | ||
| {"error": f"Langflow request failed: {str(e)}"}, status_code=500 | ||
| ) | ||
| return JSONResponse({"error": f"Langflow request failed: {str(e)}"}, status_code=500) |
| return JSONResponse( | ||
| {"error": f"Failed to get chat history: {str(e)}"}, status_code=500 | ||
| ) | ||
| return JSONResponse({"error": f"Failed to get chat history: {str(e)}"}, status_code=500) |
| return JSONResponse( | ||
| {"error": f"Failed to get langflow history: {str(e)}"}, status_code=500 | ||
| ) | ||
| return JSONResponse({"error": f"Failed to get langflow history: {str(e)}"}, status_code=500) |
| return JSONResponse( | ||
| {"error": f"Failed to delete session: {str(e)}"}, status_code=500 | ||
| ) | ||
| return JSONResponse({"error": f"Failed to delete session: {str(e)}"}, status_code=500) |
| flow_type=flow_type, | ||
| error=result.get("error") | ||
| ) | ||
| logger.error("Flow reset failed", flow_type=flow_type, error=result.get("error")) |
| @@ -52,6 +57,5 @@ | |||
| except Exception as e: | |||
| logger.error("Unexpected error in flow reset", error=str(e)) | |||
| return JSONResponse( | |||
| {"success": False, "error": f"Internal server error: {str(e)}"}, | |||
| status_code=500 | |||
| {"success": False, "error": f"Internal server error: {str(e)}"}, status_code=500 | |||
| return JSONResponse( | ||
| {"error": f"Failed to get nudges: {str(e)}"}, status_code=500 | ||
| ) | ||
| return JSONResponse({"error": f"Failed to get nudges: {str(e)}"}, status_code=500) |
| return JSONResponse( | ||
| {"error": f"Failed to get nudges: {str(e)}"}, status_code=500 | ||
| ) | ||
| return JSONResponse({"error": f"Failed to get nudges: {str(e)}"}, status_code=500) |
No description provided.