<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/"><channel><title>Projects on Ta0X1 の Blog</title><link>https://blog.taoxi.ink/projects/</link><description>Recent content in Projects on Ta0X1 の Blog</description><generator>Hugo</generator><language>zh-CN</language><copyright>2025-2026 Ta0X1 の Blog</copyright><lastBuildDate>Fri, 09 Jan 2026 00:00:00 +0800</lastBuildDate><atom:link href="https://blog.taoxi.ink/projects/index.xml" rel="self" type="application/rss+xml"/><item><title>大份制造机</title><link>https://blog.taoxi.ink/projects/rdtl/</link><pubDate>Fri, 09 Jan 2026 00:00:00 +0800</pubDate><guid>https://blog.taoxi.ink/projects/rdtl/</guid><description>大份制造机 - Story Forge AI</description><content:encoded><![CDATA[<h1 id="大份制造机-story-forge-ai">大份制造机 (Story Forge AI)</h1>
<h2 id="核心理念-manifesto">核心理念 (Manifesto)</h2>
<ul>
<li>想要看 <strong>安倍晋三</strong> 与 <strong>山上彻也</strong> 在异世界重逢并组建乐队？<strong>可以。</strong></li>
<li>想要看 <strong>爱因斯坦</strong> 与 <strong>霍金</strong> 在秋名山进行轮椅漂移对决？<strong>没问题。</strong></li>
<li>想要模仿 <strong>鲁迅</strong> 的笔触描写 <strong>赛博朋克 2077</strong>？<strong>安排。</strong></li>
</ul>
<h2 id="技术栈-tech-stack">技术栈 (Tech Stack)</h2>
<ul>
<li><strong>Frontend</strong>: React 19, TypeScript</li>
<li><strong>Build Tool</strong>: Vite</li>
<li><strong>Styling</strong>: Tailwind CSS</li>
<li><strong>AI SDK</strong>: Google GenAI SDK</li>
<li><strong>Icons</strong>: Lucide React</li>
</ul>
<h2 id="开始使用-start">开始使用 (Start)</h2>
<p>这里是已经部署的网站。</p>
<p><a href="https://shitmaker.taoxi.ink">大份制造机</a></p>
<p>一开始的页面会有配置，你可以选择你使用的服务商，本次演示过程中推荐使用DeepSeek。
<img loading="lazy" src="https://po1.taoxi.ink//20260109185408729.png">
点击获取密钥，会跳转到DeepSeek的密钥获取页面，你需要登录你的DeepSeek账号，获取到密钥后，复制到大份制造机的配置页面中。
<img loading="lazy" src="https://po1.taoxi.ink//20260109185547886.png">
复制以后保存不要让给别人看，否则会被消耗余额，本Api会自行删除。
<img loading="lazy" src="https://po1.taoxi.ink//20260109185622606.png">
复制以后选择对应的模型即可，本次演示过程中推荐使用DeepSeek的<code>deepseek-chat</code>模型。
<img loading="lazy" src="https://po1.taoxi.ink//20260109190115630.png">
点击写入配置保存，即可开始使用。
输入你的Prompt，点击生成，即可开始制造你的大份。
<img loading="lazy" src="https://po1.taoxi.ink//20260109190807606.png"></p>
<h2 id="自行部署-self-deployment">自行部署 (Self Deployment)</h2>
<h3 id="vercel部署-vercel-deployment">Vercel部署 (Vercel Deployment)</h3>
<p><a href="https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2FSinhoole%2Fstory-forge-ai"><img alt="Deploy with Vercel" loading="lazy" src="https://vercel.com/button"></a></p>
<p>点击之后你会进入下面这个界面，你需要点击登录一下你的github账号。
<img loading="lazy" src="https://po1.taoxi.ink//20260109184123330.png">
由于这一步实在是过于简单而且不在本教程的范围之内，不再赘述。但是为了方便插入一篇文章。</p>
<p><a href="https://zhuanlan.zhihu.com/p/805391882">知乎文章</a></p>
<h3 id="本地运行-local-deployment">本地运行 (Local Deployment)</h3>
<ol>
<li>
<p><strong>克隆仓库</strong></p>
<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;"><code class="language-bash" data-lang="bash"><span style="display:flex;"><span>git clone https://github.com/Sinhoole/story-forge-ai.git
</span></span><span style="display:flex;"><span>cd story-forge-ai
</span></span></code></pre></div></li>
<li>
<p><strong>安装依赖</strong></p>
<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;"><code class="language-bash" data-lang="bash"><span style="display:flex;"><span>npm install
</span></span></code></pre></div></li>
<li>
<p><strong>启动开发服务器</strong></p>
<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;"><code class="language-bash" data-lang="bash"><span style="display:flex;"><span>npm run dev
</span></span></code></pre></div></li>
<li>
<p><strong>构建生产版本</strong></p>
<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;"><code class="language-bash" data-lang="bash"><span style="display:flex;"><span>npm run build
</span></span></code></pre></div></li>
</ol>
]]></content:encoded></item></channel></rss>