Avatar Generation
Simli
standardSimli is an reliable avatar generation provider offering Lip-sync Avatar, Streaming Avatar through Aweb's unified API. It features full streaming support with standard-tier latency.
Specifications
Capabilities (2)
Quick start
Use Simli through Alfred's unified API — no provider-specific SDK needed.
cURL
curl -X POST https://api.alfred-ai.app/v1/execute \
-H "Authorization: Bearer $ALFRED_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"provider": "simli",
"capability": "avatar.lipsync",
"input": { "prompt": "Hello from Simli!" }
}'TypeScript
import { Alfred } from '@alfred/core';
const alfred = new Alfred({ apiKey: process.env.ALFRED_API_KEY });
const result = await alfred.execute({
provider: 'simli',
capability: 'avatar.lipsync',
input: { prompt: 'Hello from Simli!' },
});
console.log(result.output);