IAC/temp/function-source/src/corretor_gemini/gemini_corretor.py [209:218]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            if verbose:
                    print(f"Response from the Gemini model: {response}")
            if hasattr(response, 'text'):
                return response.text
            else:
                print("Invalid response from the Gemini model.")
                return None
        except Exception as e:
            print(f"Error connecting to the Gemini model: {e}")
            return None
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



