Why: We want to generate a haiku a day, choosing a random pokemon id, and have it saved in a CSV for easy retreival.
What: There are several functions:
Create a function that finds a random poke_id
Take the inputs from the CSV according to that poke_id and generate a haiku
Manage env var properly
Create a sleeper since there is a rate limit with Cohere's trail key. We'll want to run this in bulk to collect the full 150 #wynaut
Save the results to the CSV using a new column. It'd be nice to keep them all even if they're not good, lol.
Add logs to debug: we should make sure we log the model parameters. The easiest way is to log parameters whenever the generator runs. I don't foresee it changing too much after playing around with the model and assessing results.
Why: We want to generate a haiku a day, choosing a random pokemon id, and have it saved in a CSV for easy retreival. What: There are several functions: