Pair Programming with LLM

Deeplearning.AI [course](https://learn.deeplearning.ai/courses/pair-programming-llm/) with Laurence Moroney

Created: by Pradeep GowdaUpdated:Sep 28, 2024Tagged: llm · programming · course .

Pair Programming with Google’s PaLM API.

Google Generative AI Studio: https://developers.generativeai.google/

What we need:

“Larger the animal, larger the model” - pip install -q google.generativeai

import google.generativeai as palm
palm.configure(api_key="....")
for m in palm.list_models():
    print(f"{m.name}")
    print(f"{m.description}")
    print(f"{m.supported_generation_methods}\n")