Hands on with OpenAI AppKit | San Francisco .

Members-Only

Recent Talks & Demos are for members only

Exclusive feed

You must be an AI Tinkerers active member to view these talks and demos.

October 17, 2025 · San Francisco

OpenAI AppKit: Building AI Apps

Explore practical uses of OpenAI AppKit, building and deploying AI-powered applications, integrating APIs, and managing model lifecycles in real-time environments.

Overview
Tech stack
  • OpenAI
    OpenAI is an AI research and deployment company: We build safe artificial general intelligence (AGI) to benefit all of humanity.
    OpenAI is a premier AI research and deployment company, focused on developing safe Artificial General Intelligence (AGI) for global benefit. The organization operates under a unique structure: a non-profit Foundation governs a for-profit Group, which functions as a public benefit corporation. Its technology portfolio includes industry-defining models like the GPT series (e.g., GPT-4o, GPT-5.1), the conversational platform ChatGPT, and the text-to-video model Sora. These tools drive innovation across multiple sectors, providing powerful, accessible AI capabilities for developers, businesses, and consumers worldwide.
  • MCP
    MCP is the open-source standard for securely connecting AI agents (like LLMs) to external tools, data, and enterprise workflows.
    The Model Context Protocol (MCP) functions as a standardized integration layer: think of it as a USB-C port for AI applications. Developed and open-sourced by Anthropic, this protocol allows large language models (LLMs) to access real-time context and execute actions via external tools like GitHub, Jira, or proprietary databases . It uses a simple JSON-RPC interface to define tools, schemas, and endpoints, which enables AI agents to perform complex, state-changing tasks—such as creating a GitHub issue or running a test script—rather than just generating text . MCP is essential for building agentic AI systems that can autonomously pursue goals and operate within defined safety and permission boundaries .
  • iframe
    An Inline Frame (`<iframe>`) is an HTML element that embeds a separate, independent HTML document (a new browsing context) into the current one.
    The `<iframe>` element is a core HTML tag, essential for integrating third-party resources directly into a webpage. Its primary function is to display external content—like a YouTube video player or a Google Maps location—via a simple `src` attribute pointing to the resource URL. Crucially, the embedded document operates in its own isolated environment: its CSS, JavaScript, and local storage are separate from the parent page, mitigating security risks and preventing style conflicts. Developers manage this isolation and security using attributes like `sandbox` and `allowfullscreen`. While powerful for embedding, overuse can impact page performance and SEO, so implement it with precision.

Related projects