-
Notifications
You must be signed in to change notification settings - Fork 670
Genai integration #135
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
Genai integration #135
Conversation
| setup_openai_interceptor, | ||
| ) | ||
| _INTEGRATIONS_AVAILABLE["openai"] = True | ||
| except ImportError: |
Check notice
Code scanning / CodeQL
Empty except Note
| setup_genai_interceptor, | ||
| ) | ||
| _INTEGRATIONS_AVAILABLE["genai"] = True | ||
| except ImportError: |
Check notice
Code scanning / CodeQL
Empty except Note
| # Wrapper classes not available, that's fine | ||
| pass | ||
| logger.debug(f"Some integrations not available: {e}") | ||
| pass |
Check warning
Code scanning / CodeQL
Unnecessary pass Warning
| ChatSession.send_message_async = cls._original_methods[ | ||
| "chat_send_message_async" | ||
| ] | ||
| except (ImportError, AttributeError): |
Check notice
Code scanning / CodeQL
Empty except Note
@Mmadan128 Thanks for the contribution! We will review this asap. |
|
@Mmadan128 Thanks for this contribution. We've recently released version 3 and this is unfortunately no longer applicable due to the major refactor to the code base. |
|
No problem, thanks for letting me know. I will go through the v3 refactor and look for areas where I can help. Always happy to contribute. |
added google_genai_integration.py and modified init file for the same