python/chat.py [28:43]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        client = genai.Client()
        # Pass initial history using the "history" argument
        chat = client.chats.create(
            model="gemini-2.0-flash",
            history=[
                types.Content(role="user", parts=[types.Part(text="Hello")]),
                types.Content(
                    role="model",
                    parts=[
                        types.Part(
                            text="Great to meet you. What would you like to know?"
                        )
                    ],
                ),
            ],
        )
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



python/chat.py [55:69]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        client = genai.Client()
        chat = client.chats.create(
            model="gemini-2.0-flash",
            history=[
                types.Content(role="user", parts=[types.Part(text="Hello")]),
                types.Content(
                    role="model",
                    parts=[
                        types.Part(
                            text="Great to meet you. What would you like to know?"
                        )
                    ],
                ),
            ],
        )
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



