Skip to content

Latest commit

 

History

History
51 lines (38 loc) · 1.74 KB

README.md

File metadata and controls

51 lines (38 loc) · 1.74 KB

Google Generative AI Python Client

PyPI version Python support PyPI - Downloads

Get started using the PaLM API in Python. Check out the developer site for comprehensive documentation.

Installation and usage

Install from PyPI.

pip install google-generativeai

Get an API key from MakerSuite, then configure it here.

import google.generativeai as palm

palm.configure(api_key=os.environ["PALM_API_KEY"])

Use palm.generate_text to have the model complete some initial text.

response = palm.generate_text(prompt="The opposite of hot is")
print(response.result)  # cold.

Use palm.chat to have a discussion with a model.

response = palm.chat(messages=["Hello."])
print(response.last) #  'Hello! What can I help you with?'
response.reply("Can you tell me a joke?")

Documentation

Checkout the full API docs, the guide and quick starts.

Colab magics

Once installed, use the Python client via the %%palm Colab magic. Read the full guide here.

%%palm
The best thing since sliced bread is