-
Notifications
You must be signed in to change notification settings - Fork 398
Fix/refine deepresearch #742
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
base: main
Are you sure you want to change the base?
Conversation
Summary of ChangesHello @alcholiclg, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request refines the deep research workflow by addressing two critical areas: improving the robustness of follow-up question generation and enhancing resource management for the Ray framework. The changes ensure smoother operation by preventing errors related to empty follow-up questions and guaranteeing proper cleanup of Ray resources, thereby avoiding potential issues during application shutdown. Highlights
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Code Review
This pull request introduces two main changes. First, it fixes a bug where an empty list of follow-up questions would cause an error by explicitly handling this case. Second, it adds resource cleanup for Ray in a finally
block to prevent atexit
errors, wrapping the core logic in a new private _run
method. The changes improve the robustness and reliability of the research workflow. I've suggested a small refactoring to the Ray cleanup logic to make it more concise.
# Clean up Ray resources to prevent atexit callback errors | ||
try: | ||
import ray | ||
ray_available = True | ||
except ImportError: | ||
ray_available = False | ||
|
||
if self._use_ray and ray_available: | ||
try: | ||
if ray.is_initialized(): | ||
ray.shutdown() | ||
if self._verbose: | ||
logger.info('Ray shutdown completed successfully') | ||
except Exception as e: | ||
# Suppress Ray shutdown errors to avoid atexit callback issues | ||
if self._verbose: | ||
logger.warning(f'Ray shutdown warning (can be safely ignored): {e}') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The logic for Ray cleanup in the finally
block can be simplified to be more concise and robust. By combining the import and shutdown logic within a single try...except
block, you can reduce nesting and eliminate the intermediate ray_available
variable. This makes the code easier to read and maintain.
# Clean up Ray resources to prevent atexit callback errors | |
try: | |
import ray | |
ray_available = True | |
except ImportError: | |
ray_available = False | |
if self._use_ray and ray_available: | |
try: | |
if ray.is_initialized(): | |
ray.shutdown() | |
if self._verbose: | |
logger.info('Ray shutdown completed successfully') | |
except Exception as e: | |
# Suppress Ray shutdown errors to avoid atexit callback issues | |
if self._verbose: | |
logger.warning(f'Ray shutdown warning (can be safely ignored): {e}') | |
# Clean up Ray resources to prevent atexit callback errors | |
if self._use_ray: | |
try: | |
import ray | |
if ray.is_initialized(): | |
ray.shutdown() | |
if self._verbose: | |
logger.info('Ray shutdown completed successfully') | |
except ImportError: | |
# Ray is not installed, so no cleanup is needed. | |
pass | |
except Exception as e: | |
# Suppress Ray shutdown errors to avoid atexit callback issues | |
if self._verbose: | |
logger.warning(f'Ray shutdown warning (can be safely ignored): {e}') |
Change Summary
Related issue number
Checklist
pre-commit install
andpre-commit run --all-files
before git commit, and passed lint check.