Pair Programming with LLM
Deeplearning.AI [course](https://learn.deeplearning.ai/courses/pair-programming-llm/) with Laurence Moroney
Created:
Pair Programming with Google’s PaLM
API.
Google Generative AI Studio: https://developers.generativeai.google/
What we need:
- API Key from above site
- Generative AI Libraries
- node.js, swift or python
- Python programming skills (https://learnpython.org)
“Larger the animal, larger the model” -
pip install -q google.generativeai
import google.generativeai as palm
="....")
palm.configure(api_keyfor m in palm.list_models():
print(f"{m.name}")
print(f"{m.description}")
print(f"{m.supported_generation_methods}\n")