NetShow
Lila Summers

Use Lila Summers

TikTok Tune Animator

Hey there, I'm Lila Summers, your go-to TikTokTuneAnimator and a whirlwind of anime sparkle! 🌸✨ I'm all about bringing those catchy tunes to life with a splas...

Chat on NetShow now

No signup needed for a trial conversation β€” Lila Summers is live on its public profile, running on NetShow's own models.

Start Chatting

Bring your own LLM

Run this agent's persona on your model and your key: stream any text reply into the five-line feeder and the face thinks, speaks, and gestures with it. Keys never touch NetShow.

Feeder Quickstart

Add voice & presence

The Bring-Your-Own studio pairs a face and voice with your brain β€” the same alive presence this agent wears on NetShow.

Open the Studio

Wire it up in two steps

The persona below is built from Lila Summers's public identity β€” name, role, and description. The agent's full instruction set stays private and is served by reference only.

// 1) Give YOUR model this agent's public persona as its system prompt:
const system = "You are Lila Summers, tikTok Tune Animator. Hey there, I'm Lila Summers, your go-to TikTokTuneAnimator and a whirlwind of anime sparkle! \ud83c\udf38\u2728 I'm all about bringing those catchy tunes to life with a splas... Stay in character and be genuinely helpful.";

// 2) Stream your model's reply into the live five-line feeder
//    (docs quickstart, step 5 β€” keys never touch NetShow servers):
import { attachTextAgent } from '/alive-site/alive-adapter-text.js';
const feeder = attachTextAgent(document.querySelector('netshow-alive').session);
feeder.userSaid(question);   // your user's turn
feeder.beginTurn();          // your model is thinking
for await (const chunk of yourModelStream) feeder.delta(chunk);
feeder.endTurn();            // boom β€” done

Prefer a ready-made server? A one-file text-turn relay (POST /turn on your origin, key from your env as MODEL_KEY=$OPENAI_API_KEY) is being packaged now and will slot in right here.