Skip to content

Commit 311e9a6

Browse files
garland3claude
andauthored
fix: resolve Dependabot configuration issues (#25)
* feat(utilities): enhance logging in tool workflow and LLM response handling - Add detailed step logging in tool_utils.py for execute_tools_workflow, execute_single_tool, and prepare_tool_arguments functions to trace tool execution process - Modify llm logging in error_utils.py to output full llm_response instead of just has_tool_calls for better debugging - Update pdfbasic main.py to include logging import and adjust _analyze_pdf_content function to accept optional original_filename parameter for improved context handling in PDF analysis * feat: enhance chat file handling and PDF analysis - Refactor chat service to directly manage file references in session context for existing S3 files, bypassing complex file handling utilities and improving efficiency - Modify PDF analysis tool to generate in-memory PDF reports with word frequency summaries, providing better visual output for text analytics * fix: resolve Dependabot configuration issues Remove non-existent security-team references from reviewers and assignees. The required labels (security, github-actions, python, docker) have been created directly in the repository. This fixes the configuration errors reported in PRs #22 and #23. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]> --------- Co-authored-by: Claude <[email protected]>
1 parent 87c917e commit 311e9a6

File tree

2 files changed

+4
-16
lines changed

2 files changed

+4
-16
lines changed

.github/dependabot.yml

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,6 @@ updates:
99
day: "monday"
1010
time: "09:00"
1111
open-pull-requests-limit: 10
12-
reviewers:
13-
- "security-team"
14-
assignees:
15-
- "security-team"
1612
commit-message:
1713
prefix: "security(deps)"
1814
include: "scope"
@@ -37,10 +33,6 @@ updates:
3733
day: "monday"
3834
time: "09:00"
3935
open-pull-requests-limit: 10
40-
reviewers:
41-
- "security-team"
42-
assignees:
43-
- "security-team"
4436
commit-message:
4537
prefix: "security(deps)"
4638
include: "scope"
@@ -69,10 +61,6 @@ updates:
6961
interval: "weekly"
7062
day: "tuesday"
7163
time: "09:00"
72-
reviewers:
73-
- "security-team"
74-
assignees:
75-
- "security-team"
7664
commit-message:
7765
prefix: "security(docker)"
7866
labels:
@@ -87,10 +75,6 @@ updates:
8775
interval: "weekly"
8876
day: "wednesday"
8977
time: "09:00"
90-
reviewers:
91-
- "security-team"
92-
assignees:
93-
- "security-team"
9478
commit-message:
9579
prefix: "security(actions)"
9680
labels:

backend/mcp/pdfbasic/main.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,11 @@ def analyze_pdf(
131131
"""
132132
Extract and analyze text content from PDF documents with comprehensive word frequency analysis.
133133
134+
<<<<<<< HEAD
135+
This PDF processing tool provides detailed text analytics for PDF documents:
136+
=======
134137
This PDF processing tool provides detailed text analytics for PDF documents:
138+
>>>>>>> main
135139
136140
**PDF Text Extraction:**
137141
- Extracts text from all pages in PDF documents

0 commit comments

Comments
 (0)