About us
Welcome to our AI Meetup! We are a passionate community dedicated to building and learning about artificial intelligence. Whether you're an expert or just starting out, join us to share knowledge, collaborate on projects, and explore the fascinating world of AI together.
We'll be getting different events off the ground, both locally (SF) and virtually.
AI book club is going again in 2024, so if you have recommendations for us to read, let us know!
We'll AI cover topics such as Machine Learning (ML), Large Language Models (LLMs), Deep Learning, Data engineering, MLOps, Python, Computer Vision, Natural Language Processing (NLP), the Latest AI developments, and more!
Questions? Reach out to Sage Elliott on LinkedIn: https://www.linkedin.com/in/sageelliott/
Upcoming events
9

Open-Source Image Generation: Diffusion Models & LoRA - AI Build & Learn
·OnlineOnlineWelcome to AI Build & Learn, a weekly AI engineering stream where we pick a new topic and learn by building together.
This event is about generating images with AI. There's no single model we're locked into, the point is to explore what's out there and actually try a few. We'll focus on open-source models, but you're welcome to bring commercial ones (DALL·E, Midjourney, and friends) if you want to compare.
We'll try to look at both major families: diffusion-based models (the dominant approach today) and transformer-based / autoregressive image models. I'll research and try some of the best open-source options ahead of the stream, and if time allows we'll also try fine-tuning with LoRA to teach a model a new style or subject.
Some things to look up to get started:
Open-source models:
- FLUX.2 (Black Forest Labs): current open-weight quality benchmark; DiT backbone, up to 4MP, multi-image reference
- Stable Diffusion 3.5 / SDXL (Stability AI): deepest ecosystem — LoRA, ControlNet, inpainting, countless fine-tunes
- Qwen-Image (Alibaba): strong all-rounder, especially good at rendering text (including Chinese)
- Z-Image / Z-Image-Turbo: Apache-2.0, near FLUX.2 quality in just a few steps (fast and commercial-friendly)
- HunyuanImage (Tencent): another high-quality open-weight option
Tooling:
- Hugging Face Diffusers: https://github.com/huggingface/diffusers
- ComfyUI: node-based workflows: https://github.com/comfyanonymous/ComfyUI
- LoRA fine-tuning for diffusion models
Resources
- GitHub: https://github.com/sagecodes/ai-build-and-learn
- Events Calendar: https://luma.com/ai-builders-and-learners
- Slack (Discuss during the week): https://slack.flyte.org/
- Hosted by Sage Elliott: https://www.linkedin.com/in/sageelliott/
In this stream
- Intro to topic
- Community Discussion
- Practical examples
Community challenge (optional)
Try spending 30–90 minutes during the week learning or building something related to the topic, then share what you’re working on in Slack.Note on Flyte / Union
You may see Flyte used in some demos. Flyte is an open-source AI orchestration platform maintained by Union (where I work) for building scalable, durable, and observable AI workflows. You do not need to use Flyte to participate.- Union: https://www.union.ai/
- Flyte: https://flyte.org/
Drop a comment with ideas for future topics (agents, RAG, MLOps, robotics, frameworks, and more).
31 attendees
Building Code Mode Agents
·OnlineOnlineMost agents use tools by emitting one structured tool call at a time. The model picks a tool, waits for the result, picks the next, and every intermediate result flows back through its context. As the number of tools and steps grows, that gets expensive, slow, and brittle.
Code mode flips this. Instead of calling tools one at a time, the agent writes code that calls them as functions, runs that code in a sandbox, and returns only what matters back to the model. Why this works well in practice: models are trained on far more code than tool-call traces, so they compose operations more reliably in a language they already know. Loops, branching, filtering, and data transforms happen in the sandbox instead of as separate round-trips. Large intermediate results stay out of the context window, and tool definitions load on demand instead of all up front. The result is an agent that does more per step and spends fewer tokens doing it.
The obvious worry is letting a model write and run code. We'll handle that with Flyte's sandboxed orchestrator: the generated code can do pure control flow like loops, branching, and wiring tool calls together, but has no access to the filesystem, network, or OS. The actual tool or MCP calls get dispatched to isolated container tasks. You get the flexibility of letting a model write code without handing it the keys to the machine.
In this hands-on workshop, we'll build a code mode agent that writes and executes code to call tools, then deploy it behind a simple UI. The whole pipeline runs on Flyte 2/Union, so runs are durable and reproducible, steps are cached, and the same code scales from a laptop to a multi-node cluster without rewrites.
By the end, you'll have a working code mode agent and a reusable pattern you can point at your own tools.What we'll cover
- Why direct tool-calling breaks down at scale, and what code mode changes
- Running model-generated code safely in Flyte's sandboxed orchestrator, with heavy work dispatched to isolated tasks
- Orchestrating with Flyte 2: cached steps, durable runs, and execution that scales
- Deploying the agent with a UI, with a path to production
What you'll leave with
- A working code mode agent that writes and runs code to use tools
- A reusable pattern you can adapt to your own tools and MCP servers
- A clear sense of when code mode beats direct tool-calling, and when it does not
Who it's for
ML and software engineers building agents who want a more efficient, more capable alternative to chaining tool calls. Whether you're prototyping at work, evaluating agent infrastructure, or building a portfolio project, you'll leave with code you can keep extending.
Hosted by Sage Elliott, AI Engineer at Union.ai47 attendees
Open-Source Video Generation: Diffusion & Transformer Models - AI Build & Learn
·OnlineOnlineWelcome to AI Build & Learn, a weekly AI engineering stream where we pick a new topic and learn by building together.
This event is about generating video with AI, picking up where the image generation event left off. As with images, there's no single model we're committed to — we'll explore several and see how far the open-source options have come. Open source is the focus, but commercial models (Sora, Runway, and others) are fair game if you want to compare.
Most current video models build on the same diffusion foundations as image generation, extended across time and increasingly using transformer/DiT backbones. We'll try a few open-source text-to-video and image-to-video models and talk through the practical tradeoffs: quality, clip length, speed, and hardware requirements.
Some things to look up to get started:
Open-source models:- Wan 2.2 (Alibaba Tongyi): versatile MoE model: text-to-video, image-to-video, and editing in one
- HunyuanVideo (Tencent): strong cinematic / photorealistic quality
- LTX-Video / LTX-2 (Lightricks): the fast one; ~5s clip in under a minute on a single GPU
- CogVideoX (Zhipu / THUDM): best at following detailed, multi-part prompts
- Mochi 1 (Genmo): flow-matching model known for fluid, coherent motion
- Stable Video Diffusion (Stability AI): earlier image-to-video, still widely used
Tooling:
- Hugging Face Diffusers: video pipelines: https://github.com/huggingface/diffusers
- ComfyUI: node-based workflows (popular for video too): https://github.com/comfyanonymous/ComfyUI
Resources
- GitHub: https://github.com/sagecodes/ai-build-and-learn
- Events Calendar: https://luma.com/ai-builders-and-learners
- Slack (Discuss during the week): https://slack.flyte.org/
- Hosted by Sage Elliott: https://www.linkedin.com/in/sageelliott/
In this stream
- Intro to topic
- Community Discussion
- Practical examples
Community challenge (optional)
Try spending 30–90 minutes during the week learning or building something related to the topic, then share what you’re working on in Slack.Note on Flyte / Union
You may see Flyte used in some demos. Flyte is an open-source AI orchestration platform maintained by Union (where I work) for building scalable, durable, and observable AI workflows. You do not need to use Flyte to participate.- Union: https://www.union.ai/
- Flyte: https://flyte.org/
Drop a comment with ideas for future topics (agents, RAG, MLOps, robotics, frameworks, and more).
18 attendees
AI Book Club: RAG with Python Cookbook
·OnlineOnlineJuly's book is "RAG with Python Cookbook"!
This is a casual-style event. Not a structured presentation on topics. Sometimes, the discussion even drifts away from the chapters, but feel free to grab the mic to help steer it back.
Feel free to join the discussion even if you have not read the book chapters! :)
Want to discuss the contents during the reading week? Join the Flyte MLOps Slack group https://slack.flyte.org/
-------------------------------------------------
About the book:
Title: RAG with Python Cookbook
Authors: Dominik Polzer
Published: May 2026O'rielly platform: https://learning.oreilly.com/library/view/rag-with-python/9798341600553/
Chapters:
- 1. Getting Started with RAG
- 2. Foundation Models
- 3. Loading Data
- 4. Data Preparation
- 5. Embeddings
- 6. Vector Databases and Similarity Searches
- 7. Retrieval
- 8. Agentic RAG
- 9. Graph RAG
- 10. Evaluating RAG Systems
- 11. RAG Web Apps
####
Book Description
As businesses race to unlock the full potential of large language models (LLMs), a critical challenge has emerged: How do you connect these tools to real-time, external data to solve real-world problems? Retrieval-augmented generation (RAG) is the answer. By combining LLMs with information retrieval, RAG empowers you to build everything from intelligent chatbots to autonomous, task-solving agents.
Packed with over 70 practical recipes, this go-to guide tackles a wide range of GenAI applications through structured hands-on learning. Author Dominik Polzer provides the tools you need to design, implement, and optimize RAG systems for your unique use cases. Whether you're working with simple data retrieval or designing cutting-edge autonomous agents, this cookbook will help you stay ahead of the curve.- Learn core RAG components including embedding, retrieval, and generation techniques
- Understand advanced workflows like semantic-aware chunking and multi-query prompting
- Build custom solutions such as chatbots and autonomous agents for specific data challenges
- Continuously evaluate and optimize systems for accuracy, relevance, and performance
40 attendees
Past events
60


