-
Notifications
You must be signed in to change notification settings - Fork 165
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
base: main
Are you sure you want to change the base?
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. |
added google_genai_integration.py and modified init file for the same