Genkit
- Google Genkit could be useful as the system grows in complexity
- For now, it's best to skip it and focus on a simpler setup for the MVP to keep development straightforward.
Firebase
- Had issues connecting to firebase function. Set iam policy public with the following command. Fixed connection issue.
(base) lennymccline@Lennys-MacBook-Air ~ % gcloud run services add-iam-policy-binding handle-whatsapp \\
--region=us-central1 \\
--member="allUsers" \\
--role="roles/run.invoker"
Learnings
- Firebase functions should be able to connect to all of my apis and manage them without the need to integrate a fastapi
- It will also scale well if we ever chose that
- Genkit might allow ai patterns out of the box
- If we, for some reason, run into a need for more complexity/control over the implementation, it’s possible we will want to work with fast api
Twillio