Skip to content
Merged
Show file tree
Hide file tree
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 pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ dependencies = [
"requests>=2.32",
"loguru>=0.7",
"pydantic",
"revengai>=3.0.0",
"revengai>=3.51.0",
"libbs>=2.16.5",
]

Expand Down
6 changes: 4 additions & 2 deletions reai_toolkit/app/components/dialogs/analyse_dialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,11 +121,13 @@ def _on_ok(self) -> None:
if AnalyseDialog.cached_symbols is None:
return

# Pass only the subset of function boundaries selected by the user
# Send all boundaries but mark which ones to include in analysis
for entry in AnalyseDialog.cached_function_boundaries.values():
entry["boundary"].include_in_analysis = entry["enabled"]

AnalyseDialog.cached_symbols.function_boundaries = [
x["boundary"]
for x in AnalyseDialog.cached_function_boundaries.values()
if x["enabled"]
]

self.upload_service.start_analysis(
Expand Down
10 changes: 5 additions & 5 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.