Skip to content

Add samples for chat #408

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

Merged
merged 3 commits into from
Jun 28, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
65 changes: 65 additions & 0 deletions samples/chat.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
# -*- coding: utf-8 -*-
# Copyright 2023 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from absl.testing import absltest

import google.generativeai as genai
import pathlib

media = pathlib.Path(__file__).parents[1] / "third_party"

class UnitTests(absltest.TestCase):
def test_chat(self):
# [START chat]
model = genai.GenerativeModel("gemini-1.5-flash")
chat = model.start_chat(
history=[
{"role": "user", "parts": "Hello, I have 2 dogs in my house."},
{"role": "model", "parts": "Great to meet you. What would you like to know?"},
]
)
response = chat.send_message("How many paws are in my house?")
print(response.text)
# [END chat]

def test_chat_streaming(self):
# [START chat_streaming]
model = genai.GenerativeModel("gemini-1.5-flash")
chat = model.start_chat(
history=[
{"role": "user", "parts": "Hello, I have 2 dogs in my house."},
{"role": "model", "parts": "Great to meet you. What would you like to know?"},
]
)
response = chat.send_message("How many paws are in my house?", stream=True)
for chunk in response:
print(chunk.text)
print("_"*80)
# [END chat_streaming]

def test_chat_streaming_with_images(self):
# [START chat_streaming_with_images]
model = genai.GenerativeModel("gemini-1.5-flash")
chat = model.start_chat(
history=[
{"role": "user", "parts": "Hello, I'm interested in learning about musical instruments. Can I show you one?"},
{"role": "model", "parts": "Absolutely! What would you like to know?"},
]
)
organ = genai.upload_file(media / "organ.jpg")
response = chat.send_message(["What family of intruments does this instrument belong to?", organ], stream=True)
# [END chat_streaming_with_images]

if __name__ == "__main__":
absltest.main()
Loading