jkomoros / prompt-garden

A framework for gardening LLM prompts
Apache License 2.0
9 stars 0 forks source link

Seed_type `random` #32

Open jkomoros opened 1 year ago

jkomoros commented 1 year ago

Ideally there should be a way to seed it ... but then not have every single call just return the seeded value.

Maybe a random and a seed-random, and only when seed-random is called is the random number generator for sub-seeds re randomized?

Environments get a random number generator. cloneWithSeed(newSeed) changes the seed. clone() uses the same generator as the top level.