跪拜 Guibai
← Back to the summary

A 3D Digital Human for Elderly Care Is the Next Solo-Developer Goldmine


theme: cyanosis

A Spark of an Idea

Recently, while working on a 3D digital human project, I've felt more and more strongly that the next stage of AI isn't just about better thinking, but better interaction. So, a new direction for AI revenue gradually became clear in my mind.

China has nearly 300 million elderly people, many living alone, in empty nests, with children far away — companionship is their scarcest need. And their children are at the age with the strongest ability to pay, with an extremely high willingness to pay for 'finding an interesting companion for mom and dad, with remote monitoring'.

Elderly people need companionship and monitoring, and their children are willing to pay. This is a natural business loop. But there's a huge technical gap in this market: the vast majority of AI companion products are still stuck at the 'chat box' stage. Even if they are backed by the most powerful large models, they are essentially cold input-output tools, lacking a sense of 'humanity'. If AI has a body, perceives the world, understands the environment, and interacts naturally with people through voice, expressions, actions, and real-time responses, it is no longer a chat tool, but a living companion: capable of providing emotional value comparable to that of a child, helping the elderly with practical tasks, and enabling remote monitoring by their children.

This idea got me more and more excited, so I decided to fully flesh it out and talk about why this can work, how to do it, and what technology to use.

The minimal MVP demo interface I designed

Why Can This Direction Generate Revenue?

Demand Side: Accelerated aging is a deterministic trend. The need for spiritual companionship among elderly people living alone has been long neglected. Traditional solutions have limited coverage and cannot be 'always there'.

Payer Side: Children are the real decision-makers and payers. The guilt of not being by their parents' side is a natural driver for payment: 'Spending a few dozen yuan so mom and dad have someone to talk to every day' requires no market education.

Technology Side: Large models have driven the cost of intelligent conversation to near zero. The Xingyun SDK has lowered the barrier for rendering 3D digital humans to a level that ordinary developers can easily access.

Simply put: Elderly need companionship + Children are willing to pay + Xingyun 3D virtual technology is mature = A verified rigid-demand market, lacking a good product.

Product Plan: An AI Companion App for the Elderly and Their Children

First, let's talk about product positioning and core ideas. The product is positioned as '3D Digital Human AI Companion: Used by the elderly, paid for by children, with remote monitoring for children'.

It is divided into an Elderly End and a Children's End: The Elderly End is the main interaction interface for the elderly, while the Children's End is a remote care and control backend, allowing children to keep track of their parents' status at any time, actively care and interact, and simultaneously carry the business loop of membership renewal and conversion.

Elderly End: A Companion Interface the Elderly Can Understand and Use

Homepage: Upon opening, a 3D digital human (driven by the [Xingyun SDK]) is displayed, supporting real-time rendering of expressions, mouth shapes, and actions. The digital human will actively initiate caring conversations. A 'Hold to Talk' button at the bottom enables full voice interaction, suitable for elderly people who cannot type.

Features Page: An elderly-friendly toolbox — one-click call to children, video calls, weather broadcast, medication reminders, news, classic oldies selection. The top displays the 'Today's Companionship Duration', quantifying the service value.

My Page: Membership info and plan entry (Monthly 28 / Quarterly 68 / Annual 288), family member management — children register and bind the elderly's account, children pay, and the elderly directly enjoy the benefits.

Messages Page: Aggregates digital human companion records, children's messages, and health reminders, building a bridge for cross-generational communication.

Children's End: Remote Care and Control Backend

Elderly Status Overview: Upon opening the page, you can see the parents' number of conversations today, online duration, and AI-identified mood tags at a glance, with support for one-click calling.

AI Daily Companion Summary (Core Selling Point): AI automatically summarizes the elderly person's full-day chat content with the digital human, extracting chat frequency, topic preferences, and physical feelings, and tagging them with emotional labels and health risk alerts. Children don't need to scroll through chat logs one by one; they can grasp their parents' emotional changes and health risks at a glance — this is the reason users are willing to pay continuously.

Quick Care: Send greeting messages, remotely set reminders, two-way shared photo albums, view long-term health reports, turning care from 'seeing' into 'doing'.

Reminder Management: Children remotely manage timed reminders for the elderly's medication, exercise, greetings, etc., effectively setting a 'life alarm clock' for their parents from afar.

Renewal Entry: Displays membership expiration time and remaining days, naturally guiding renewal alongside companion data.

Core Technology: Embodied Driving SDK

With the product plan in place, the next key question is: What technology makes the 3D digital human run?

I researched many solutions. Traditional video streaming solutions rely on server-side rendering, have high latency and bandwidth consumption, and cannot achieve real-time interaction. Parameter streaming solutions are lighter but require building your own rendering pipeline, with extremely high development costs.

In the end, I chose the Xingyun Embodied Driving SDK.

What Exactly is Xingyun?

Xingyun is not just a digital human tool, nor an Agent wrapper product, but an Embodied Interaction Intelligence Open Platform.

Large models solve AI's 'brain', providing understanding, reasoning, and generation. Xingyun completes AI's 'body', enabling AI to express, interact, and perceive.

Large models are responsible for thinking, Agents for scheduling, and Xingyun for making AI truly 'appear in front of the user' — with an image, a voice, expressions, actions, and real-time reactions. Ultimately, it brings AI from the chat box into real terminals like screens, web pages, apps, robots, large screens, AR/VR, etc.

Why Can Independent Developers Use It?

Capability Description
One-stop SDK Integration Complete integration in 4 steps, WeChat Mini Program import with a single script line
Client-side Rendering Parameter streaming technology, runs 1080P on hundred-yuan level chips
Low Latency Approx. 500ms end-to-end response
Low Cost Points-based pay-per-use, real-time driving as low as 0.5 points/minute
Multi-terminal Compatibility Supports screens, humanoid robots, AR/VR, and other forms

The cost structure is extremely friendly to independent developers: no need for expensive GPU servers, just cloud functions + large model API + Xingyun SDK. New users get 100 trial points upon registration, and using the invitation code JM2A7C9LSW gives you 1000 points, enough for a very long time.

Integration in Just 4 Steps

Go to the Xingyun Platform to register an account, fill in the invitation code JM2A7C9LSW, and get 1000 points.

  1. After successful registration, enter the 'Console'

  2. Click 'Embodied Driving' to create an application

  3. Choose your preferred digital human image, scene, and voice, then click 'Create and Enter Debugging'

  4. Click the 'Access SDK' button in the upper right corner of the page to get the APP_ID and APP_SECRET

For the WeChat Mini Program scenario, the core code only needs a few lines:

<!-- Import Xingyun Lite SDK -->
<script src="https://media.xingyun3d.com/xingyun3d/general/litesdk/[email protected]"></script>
// Initialize the digital human
const avatar = new XmovAvatar({
  appId: 'YOUR_APP_ID',
  appSecret: 'YOUR_APP_SECRET',
  container: document.getElementById('avatar-container'),
});

// After the large model returns a reply, drive the digital human to speak
avatar.speak({
  text: aiResponse,
  emotion: 'happy',
});

The entire product link: User voice input → Large model processing → Xingyun SDK drives 3D digital human reply, with latency controllable within 500ms.

Four, Landing Path: From Idea to MVP

Step 1: Get the digital human running. Go to xingyun3d.com/developers to register and create a driving application. The 100 points gifted to new users are enough to run a complete demo.

Step 2: Build the conversation backend. Choose a cost-effective large model API (DeepSeek is recommended) and build a simple conversation service.

Step 3: Connect the core link. Using a WeChat Mini Program or Web H5 as the carrier, import the Xingyun Lite SDK to achieve 'User input → Large model reply → 3D digital human voice + expression broadcast'. Prioritize replicating the core digital human conversation page on the homepage.

Step 4: Small-scale MVP validation. Connect with communities and elderly care groups to collect feedback and iterate on the elderly-friendly interaction logic.

Step 5: Expand after validation. After retention and willingness to pay are verified, then launch value-added modules like family management and membership subscriptions.

Five, Risks and Compliance

However, it should be noted that when making an AI companion product, there are several red lines that must be guarded:

Final Words

Returning to the idea that sparked my inspiration:

The next stage of AI isn't just about better thinking, but better interaction.

Large models have taught AI to think, but if AI is to truly enter users' lives, it also needs a body, expression, and real-time interaction capabilities. What Xingyun completes is precisely this last piece of the puzzle.

Elderly companionship is just the first direction I've seen. The same technical logic can be extended to children's education, exhibition hall explanations, brand customer service, humanoid robots... Behind every scenario is a rigid-demand market willing to pay.

The technology is in place, and the market is erupting. What determines who can make money is no longer who has stronger technology, but who can get the product into the user's hands first.

Comments

Top 3 of 5 from juejin.cn, machine-translated. The original thread is authoritative.

鸡翅喝可乐变成可乐鸡翅

The text is too small—older people can't read the font at all, and they don't want to hold a phone either.

石小石Orz

Big screen, big text. The UI can also be tailored specifically for the elderly.

Puxiao

Whether the elderly need it or not isn't important. The key selling point can be: making the adult children who pay feel like they've done their filial duty. It's the same logic as parents buying their kids a learning machine—'I already bought you this several-thousand-yuan learning machine, so if your grades are still bad, you can't blame me.'

石小石Orz

Chinese parents...

廾匸22

[Like]