Skip to content

refactor: Improve code readability by formatting long lines and updat… #8

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/temp/qdrant_search_tool.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def __init__(self, **kwargs):
):
import subprocess

subprocess.run(["uv", "add", "qdrant-client"], check=True)
subprocess.run(["/usr/bin/uv", "add", "qdrant-client"], check=True)
Comment on lines 99 to +100
Copy link
Preview

Copilot AI Apr 20, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hard-coding the subprocess command path may limit portability across different environments. Consider making the command path configurable or verifying its existence at runtime.

Copilot uses AI. Check for mistakes.

else:
raise ImportError(
"The 'qdrant-client' package is required to use the QdrantVectorSearchTool. "
Expand Down
Loading