在 Emacs 中使用大型语言模型自动化交互式小说逻辑生成
Automating Interactive Fiction Logic Generation with LLMs in Emacs

原始链接: https://blog.tendollaradventure.com/automating-story-logic-with-llms/

我自动化了为一本用Emacs编写的互动式儿童读物添加交易追踪的功能。这本书讲述了达芙妮的创业周,追踪了她34个章节中的现金流。每个章节都用org标题和代码表示,需要更新以显示达芙妮的现金余额是如何计算的,以增强教育价值。我没有手动编辑,而是使用了Emacs中的`gptel`包和一个大型语言模型来在一个`org`文件中重写整个故事。 我选中了文本,调用了`gptel-rewrite`,并提供了一个描述性提示:如果发生改变达芙妮现金金额的事件,则更新每个章节中的源代码块,以包含一个`cashOperations` JSON对象。该对象指定`"operation"`(`"add"`或`"subtract"`)、`"amount"`(正值)和交易的简洁`"description"`。大型语言模型高效地更新了所有相关的章节,提供了实现未来算术解释功能的必要上下文,节省了大量的人工工作。

Hacker News 最新 | 往期 | 评论 | 提问 | 展示 | 招聘 | 提交 登录 使用大型语言模型在 Emacs 中自动化交互式小说逻辑生成 (tendollaradventure.com) 5 分,由 dskhatri 发帖,35 分钟前 | 隐藏 | 往期 | 收藏 | 讨论 加入我们 6 月 16-17 日在旧金山举办的 AI 初创公司学校! 指南 | 常见问题 | 列表 | API | 安全 | 法律 | 申请 YC | 联系我们 搜索:
相关文章

原文

summary: I automated the creation of transaction tracking logic for an Emacs-based interactive fiction book using an LLM (via gptel).

I have been writing an interactive children's book in Emacs where the protagonist Daphne earns, saves or spends money during her weeklong entrepreneurial adventure. The passages in my book are organized as follows:

Layout of my interactive fiction book

Since a reader may arrive at a passage from multiple routes, every passage includes some code to track transaction amounts, amongst other parameters. Using this code, I'm able to show the reader Daphne's cash balance at any point in the book.

screenshot of piggy bank showing cash balance

After writing 34 passages, I realized I could enhance the book's educational value by showing how Daphne's cash balance was calculated. This new feature would require modifying the code in every passage to include the context of the transactions. Hard to imagine now, but there was a time when implementing the feature would require tediously editing the code in every passage. To explore a more efficient solution, I turned to an LLM via the gptel package for Emacs.

Here's how I added the context of the transactions to every passage: I select the entire story, which is a single org file in Emacs, with C-x h, invoke gptel-rewrite with C-u C-c r RET d, then type out the following descriptive prompt:

The selection is a series of passages, each passage falls under an org heading. each passage has a source code block. update the source code blocks to include a json object, cashOperations, that tracks the change in cash in the corresponding passage. The json object contains the following keys: "operation", "amount" and "description". "operation" can be "add" or "subtract", "amount" is the change in cash amount (positive value), and description is a string of 3-5 words that describes the reason for the change in cash. Only append the cashOperations object if there has been an event or action to change the cash amount even if the net change is zero.

I follow up with RET r and wait.

I now have the context to implement an arithmetic explainer option.

screenshot of the piggy bank with the arithmetic explainer enabled

联系我们 contact @ memedata.com