Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Building LLM Powered Features (lightning talk)

Avatar for Radoslav Stankov Radoslav Stankov
July 19, 2025
0

Building LLM Powered Features (lightning talk)

Avatar for Radoslav Stankov

Radoslav Stankov

July 19, 2025
Tweet

Transcript

  1. #

  2. 1.AGI 2.AI taking developers jobs 3.Vibe coding 4.How fast AI

    moving 5.Agents / MCP I'm not talk about
  3. LLMs are already incredible, and there is years of work

    to be done to fully productize the capabilities that exist today.
  4. await fetch("https://api.openai.com/v1/chat/completions", { method: "POST", headers: { "Content-Type": "application/json", "Authorization":

    "Bearer YOUR_OPENAI_API_KEY" }, body: JSON.stringify({ model: "gpt-4", messages: [ { role: "system", content: "You are a helpful assistant." }, { role: "user", content: "Explain what LLM is" } ], temperature: 0.7 }) });