# Replace the `GOOGLE_CLOUD_PROJECT` and `GOOGLE_CLOUD_LOCATION` values# with appropriate values for your project.exportGOOGLE_CLOUD_PROJECT=GOOGLE_CLOUD_PROJECTexportGOOGLE_CLOUD_LOCATION=us-central1
exportGOOGLE_GENAI_USE_VERTEXAI=True
fromgoogleimportgenaifromgoogle.genai.typesimportLiveConnectConfig,HttpOptions,Modalityclient=genai.Client(http_options=HttpOptions(api_version="v1beta1"))model_id="gemini-2.0-flash-exp"asyncwithclient.aio.live.connect(model=model_id,config=LiveConnectConfig(response_modalities=[Modality.TEXT]),)assession:text_input="Hello? Gemini, are you there?"print("> ",text_input,"\n")awaitsession.send(input=text_input,end_of_turn=True)response=[]asyncformessageinsession.receive():ifmessage.text:response.append(message.text)print("".join(response))# Example output:# > Hello? Gemini, are you there?# Yes, I'm here. What would you like to talk about?