Too Early 0 ▲ ronjeffries.com 1 hour ago · 8 min read1539 words · Writing · hide · 0 comments Hello, loves! Regrettably awake at 0445, I look for something to code. Tout le monde déteste l’IA. It happens. Probably shouldn’t have eaten that granola bar right before bed. Anyway, I’m a morning person so let’s see what we can do about our QuestGiver and the bee version thereof. Like everything in the Dungeon except Dot (who is thus far nothing at all), Buzz the Bee is a kind of Content: class ContentFactory: def bee(self, *, name, seeking_sentences, giving_sentences, satisfied_sentences, gift): knowledge = self.create_knowledge(name, seeking_sentences, giving_sentences, satisfied_sentences, gift, 'a flower') the_bee = QuestGiverDenizen(name=name, knowledge=knowledge) info = SimpleNamespace(bee=the_bee) def bee_behavior(self, interactor): result = self.info.bee.interact(interactor) return result return Content(name=name, resources=['bee.png'], scale=0.5, interaction=bee_behavior, info=info) def create_knowledge(self, name, seeking_sentences, giving_sentences, satisfied_sentences,… No comments yet. Log in to reply on the Fediverse. Comments will appear here.