惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

雷峰网
雷峰网
GbyAI
GbyAI
Stack Overflow Blog
Stack Overflow Blog
Apple Machine Learning Research
Apple Machine Learning Research
The Cloudflare Blog
WordPress大学
WordPress大学
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
F
Fortinet All Blogs
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Microsoft Azure Blog
Microsoft Azure Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 聂微东
L
LangChain Blog
云风的 BLOG
云风的 BLOG
Jina AI
Jina AI
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
I
InfoQ
大猫的无限游戏
大猫的无限游戏
MyScale Blog
MyScale Blog
人人都是产品经理
人人都是产品经理
小众软件
小众软件
量子位
The GitHub Blog
The GitHub Blog
博客园 - 【当耐特】

Hacker News - Newest: "AI"

AI can't read an investor deck AI as an attorney? Student uses ChatGPT, Gemini to sue UW over alleged racial discrimination Hacking MCP Servers in AI Systems – The Rug Pull: Tool Changes After Approval GitHub - MeepCastana/KubeezCut: Free Web based video editor Can AI judge journalism? A Thiel-backed startup says yes, even if it risks chilling whistleblowers Coming soon: 10 Things That Matter in AI Right Now DARPA built an AI to fact-check enemy weapons claims What explains heterogeneity in AI adoption? When AI Meets Muscle: Context-Aware Electrical Stimulation Promises a New Way to Guide Human Movements - Department of Computer Science AI Changed How We Build. It Did Not Change What Matters. Linux rules on using AI-generated code - Copilot is OK, but humans must take 'full responsibility for the… Meta spins up AI version of Mark Zuckerberg to engage with employees Code Mode: Let Your AI Write Programs, Not Just Call Tools | TanStack Blog GitHub - Delavalom/graft: Go framework for building AI agents. Type-safe tools, multi-provider (OpenAI, Anthropic, Gemini, Bedrock), zero vendor SDKs. India's TCS tops estimates, says new AI models did not dent services demand Gen Z's fading AI hype Strong feeling: we are in a folded AI reality GitHub - machinarii/total-recall-catalog: A reference catalog of latest knowledge retrieval, memory & RAG systems GitHub - mensfeld/code-on-incus: Give each AI agent its own isolated machine with root, Docker, and systemd. Active defense detects and stops threats automatically.. Quantization, LoRA, and the 8% Problem: Benchmarking Local LLMs for Production AI Iran war: We spoke to the man making Lego-style AI videos that experts say are powerful propaganda Powell, Bessent discussed Anthropic's Mythos AI cyber threat with major U.S. banks GitHub - immartian/bellamem: Persistent belief-graph memory for AI agents. Retrieves decisive context by importance — not recency, not RAG, not /compact. recursive-mode: The Repo-Native Operating System for AI Engineering After the attack on Sam Altman's home, will AI CEO's go on the offensive? The biggest advance in AI since the LLM Opus 4.6 vs GPT 5.4 One Prompt Unity World Generation Test “AI polls” are fake polls Client Challenge Can AI be a 'child of God'? Inside Anthropic's meeting with Christian leaders
Is AI an expensive hobby?
allessa · 2026-04-23 · via Hacker News - Newest: "AI"

My husband and I started experimenting with AI about six months ago. Since we were both on a career break, we were careful about spending. So we set a strict rule – no more than $100 per month on anything AI-related: APIs, tools, subscriptions, all of it.

I wasn’t trying to analyze the costs at the start. I just wanted to learn and stay within that budget. At the same time, the news about companies investing billions in AI – and developers talking about “burning tokens” – was hard to ignore. And I was building public apps, which meant other people could be burning my tokens.

Finally, I got curious: why wasn’t I running into budget issues? And where was the money actually going? 

Below are the answers. It is not a deep financial analysis. It’s a simple breakdown of how much I actually spent experimenting with AI for over six months, and what surprised me.

The grand total

After six months, out of my total allowed $600, I spent slightly over $400. And here is what I spent it on:

WhatHow muchWhy
ChatGPT Plus subscription$162 ($27 per month in EU)I switched to paid subscription mostly for generating images. The free tier only gives 3 images per day, and even if I simply wanted a nice cover image for a blog post, I needed more iterations than that.
Cursor Pro subscription$126 ($21 per month)I needed an IDE that would support my vibe-coding-first approach. I tried a free tier, but quickly hit token limits.
Render hosting$34 (~$7 per app per month)Not technically AI-related, but my apps have web UIs and I needed to host them somewhere for public access.
OpenAI platform$100 (metered)Usage of the OpenAI APIs and services for my apps.
Total$422

💰Insight

My flat-rate subscription fees were higher than my metered AI usage. I had a somewhat naive assumption that subscriptions imply a volume discount and should be cheaper than paying per API call.

Metered usage vs subscriptions

Of course, how I use ChatGPT or Cursor is very different from how I use OpenAI platform APIs. ChatGPT is for chats and architecture questions; Cursor handles all the code generation for my apps; and OpenAI APIs are for building the core logic of my apps and running them in production.

But all of them use LLMs and charge per token. So I wondered – if I paid for metered usage instead of a flat fee subscription during those 6 months, where would I end up?

I downloaded all the logs from Cursor and ChatGPT and got the overall amount of tokens, images, files processed, tools used, etc. Then I applied the rates from the latest GPT-5.4 model to see if I was under or overpaying.

GPT-5.4 pricing:

  • Input: $2.50 / 1M tokens
  • Output: $15 / 1M tokens
  • Images: $0.17 per image (estimated)
  • Uploaded image processing: $0.015
  • Web search: $0.01 per call
CursorChatGPT
Total input text tokens16.5M145K
Est. price with gpt-5.4$37.6$0.36
Total output text tokens1.5M838K
Est. price with gpt-5.4$23.6$12.57
ImagesN/A60
Est. price with gpt-5.40$10.20
Uploaded imagesN/A66
Est. price with gpt-5.40$0.99
Uploaded text filesN/A1.1M 
Est. price with gpt-5.40$2.75
Web searchesN/A35
Est. price with gpt-5.40$0.35
Total est. price$61$24.26
Subscription price$126$162

💰Insight 

Ouch! I am overpaying 2x for Cursor and 6x for ChatGPT compared to what I would have paid with metered usage. But these tools don’t offer a pay-per-use option. Also, subscriptions made it easier to work without interruptions or hitting limits. Whether that’s worth the price is still an open question.

Development vs Production cost

Another insight I got right away is that the development cost of AI apps is way higher than running my apps in production. Here is another way to look at the same data:

WhatHow muchType
ChatGPT Plus subscription$162Development
Cursor Pro subscription$126Development
Render hosting$34Production
OpenAI platform$100Development + Production
Total$422

Both ChatGPT and Cursor subscriptions are pure development cost, Render is pure production cost, but OpenAI is a mixture of both. To split this line into production vs development costs I needed a deep dive into OpenAI API logs and billing data.

After 6 months I ended up with two small apps:

  • A small text adventure game based on The Lord of the Rings (LOTR)
    This one uses OpenAI APIs to generate a different journey depending on the player’s input. All I use here is the Responses API. I played a little bit with images, but quickly abandoned the idea because they were too expensive.
  • Virtual Alexandra (VA)
    A chatbot that answers users’ questions based on my writing and instructions using APIs and retrieval augmented generation (RAG) from OpenAI. I also tried fine-tuning (didn’t work) and did a bunch of data preparation for RAG, including translating several MB of text from Russian into English and vice versa. 

I used different API keys for production and development of both apps, so I could see how much I spent on each of them. Images and fine-tuning are not used in production, but they are still part of the development cost – you pay even if you fail.

LOTR game
DevelopmentResponses API$17.99
Images$1.36
Development Total $19.35
ProductionResponses API$1.49
Production Total$1.49
LOTR total$20.84
Virtual Alexandra
DevelopmentResponses API$29.74
RAG (file_search)$1.23
Data translation (via Completions API)$8.57
Fine-tuning$34.08
Development Total$73.62
ProductionResponses API$5.52
RAG (file_search)$0.16
RAG (vector storage)$0.008
Production Total$5.69
VA Total79.31

💰Insight 

Most of my AI spend went into development, not production. The production cost is about 10 percent of the total ($41 out of $422).

Apparently, my fear of public apps becoming a money sinkhole didn’t materialize. Partially this is because of low usage – I had about a hundred people try my apps. And these are not productivity apps people would use every day, there is no stickiness in them. 

But another reason is that I was more careful with what I put in production. I optimized system prompts and discarded expensive features like images. One question that Virtual Alexandra answers costs me $0.088 – less than ten cents. Ten steps in the LOTR game cost $0.037 – about four cents. 

Local models vs paid APIs

$600 was our family total AI budget, and I spent more than $400. How much did my husband spend? Well, the answer is … $0. Our interests led us into different experiments: I wanted something I could share with other people, while he was happy exploring how he can improve his day-to-day coding and test the power of the local models. But that zero is deceiving. Here is what actually happened.

AlexandraDmitry
API + subscription spend$422$0
HardwareMacBook AirMacBook Pro
Hardware cost~$1000~$3000
Dev focusSmall public appsLocal AI dev environment

💰Insight 

I paid for convenience and speed, while my husband Dmitry paid upfront in hardware and setup effort.

We didn’t buy new laptops, we used what we had in the house. If you happen to have a powerful computer already and want to start your vibe coding journey, you can spend exactly $0. If your computer is from Apple, read Dmitry’s guide on setting up local AI on a Mac to get started.
But if you only have an old MacBook Air, you can still go ahead – it will be way cheaper to start experimenting with paid subscriptions and APIs instead of investing in new hardware upfront.

Learnings

AI is an affordable hobby

All my data is related to small scale apps and experiments, it doesn’t apply to corporate, startup, or deep research worlds. But for a casual hobby, just set your budget. Without watching tokens or hours and never hitting any hard limits, I was able to keep it under $100 a month.

At small scale, the true cost is app development, not running in production

Public APIs turned out to be cheaper than I expected. Unless you build a really viral app, you are very unlikely to burn a crazy amount of money. The two apps I created each cost less than ten cents per user session, so I can afford hundreds of daily users without exceeding my monthly budget.

However, development costs add up quickly. Experimenting with features like fine-tuning and image generation can easily dominate the total spend, even when production usage stays low.

AI subscriptions provided less value than I would like

It’s worth looking at your AI subscriptions – are you maximizing their value? And if not, are you paying for something else like a good uninterrupted workflow? One of my personal takeaways from this write-up is to dig deeper into this and see how much I really need these services and whether I can replace them with local AI setup.