OyeFilmy — Single ChatChatGPT/Claude-grade · on the 1a shell
Search threads
TODAY
Tagline + API snippet
Claude Opus · now
Storyboard: noir chase
GPT-5 · 2h
Pricing model math
Gemini · 5h
Refactor render queue
Claude Sonnet · yesterday
Brand voice guidelines
Llama 4 · 2d
4 messages
Draft a short tagline for OyeFilmy and explain your reasoning.
OF
Three directions, each with a different emphasis:
“Make anything. Switch any model.” — leads with breadth and the switching hook.
“The director’s cut of AI creation.” — cinematic, premium, on-brand.
“One studio. Every model.” — short, brandable, enterprise-friendly.
I’d lead with the first — it states the core promise and your differentiator in five words.
Nice. Give me a tiny JS snippet to call the generate endpoint.
OF
Here’s a minimal call:
javascript
const res = await fetch('https://api.oyefilmy.com/v1/generate', {
  method: 'POST',
  headers: {
    Authorization: `Bearer ${apiKey}`,
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({ model: 'flux-1.1-pro', prompt, seed }),
});
const { asset, credits } = await res.json();
Swap `model` for any connected provider — the credit cost adjusts automatically.
≈ 0 tok
9 cr / msg