Connect with Us to Learn More - hello@remoder.com

Remoder
Remoder
  • Home
  • PATHS
    • 🧠 AI SYSTEMS ENGINEER
    • 🌌 SYSTEMS ENGINEER
    • 🌟 Π›ΠΈΠ³Π° Адама
    • 🌟 Adam's League
  • LEARN
    • πŸŽ₯ Video Gallery
    • πŸ“˜ Guides / Whitepapers
    • πŸ“ Blog / Insights
  • πŸ€– AI Agents
  • COMMUNITY
    • 🀝🏼 Mentorship
    • πŸ‘¨πŸ»β€πŸ’» Mentors
    • πŸ“… Events / Workshops
  • More
    • Home
    • PATHS
      • 🧠 AI SYSTEMS ENGINEER
      • 🌌 SYSTEMS ENGINEER
      • 🌟 Π›ΠΈΠ³Π° Адама
      • 🌟 Adam's League
    • LEARN
      • πŸŽ₯ Video Gallery
      • πŸ“˜ Guides / Whitepapers
      • πŸ“ Blog / Insights
    • πŸ€– AI Agents
    • COMMUNITY
      • 🀝🏼 Mentorship
      • πŸ‘¨πŸ»β€πŸ’» Mentors
      • πŸ“… Events / Workshops
  • Sign In
  • Create Account

  • My Account
  • Signed in as:

  • filler@godaddy.com


  • My Account
  • Sign out

Signed in as:

filler@godaddy.com

  • Home
  • PATHS
    • 🧠 AI SYSTEMS ENGINEER
    • 🌌 SYSTEMS ENGINEER
    • 🌟 Π›ΠΈΠ³Π° Адама
    • 🌟 Adam's League
  • LEARN
    • πŸŽ₯ Video Gallery
    • πŸ“˜ Guides / Whitepapers
    • πŸ“ Blog / Insights
  • πŸ€– AI Agents
  • COMMUNITY
    • 🀝🏼 Mentorship
    • πŸ‘¨πŸ»β€πŸ’» Mentors
    • πŸ“… Events / Workshops

Account

  • My Account
  • Sign out

  • Sign In
  • My Account

πŸ€– AI Agents

 

Welcome to the AI Agents Library β€” your all-in-one hub for exploring intelligent systems built by Remoder.


Here, you’ll find complete walkthroughs, videos, architectural diagrams, and PDF guides that break down how real-world AI agents are designed, deployed, and scaled.


From finance to healthcare, each project showcases how AI, DevOps, and system engineering come together to build next-generation intelligent automation. πŸš€

🧠 Lab 2 Project 1: Financial Advisor AI Agent

 

🧠 What It Does


This project builds a smart AI-powered financial advisor that helps users make better investment decisions.

The agent analyzes user input such as goals, risk tolerance, and time horizon β€” and responds with a personalized portfolio recommendation, risk explanation, and educational insight powered by an LLM (via Ollama).


βš™οΈ How It Works

 

   1.  FastAPI Backend (app/main.py)
   β€’   Handles all incoming requests (like /analyze or /recommend).
   β€’   Integrates components like the risk model, portfolio allocation logic, and LLM responses.

   2.  AI Engine (llm.py)
   β€’   Uses the Ollama server running locally in Docker.
   β€’   Sends prompts to a selected model (e.g., llama3, mistral, or deepseek) to generate explanations and insights.
   β€’   Example: β€œExplain this portfolio strategy to a beginner investor.”

   3.  Risk Model (risk_model.py)
   β€’   Uses Scikit-learn and simple numeric rules to estimate a user’s risk score (e.g., conservative, balanced, aggressive).
   β€’   Helps tailor recommendations based on individual profiles.

   4.  Portfolio Logic (portfolio.py)
   β€’   Uses the risk score to assign proportions between stocks, bonds, and cash.

   5.  LLM Integration (Ollama via Docker Compose)
   β€’   The Ollama container hosts and serves the LLM.
   β€’   FastAPI communicates with it through an internal Docker network (OLLAMA_BASE_URL=http://ollama:11434).
   β€’   This setup makes it lightweight, reproducible, and secure.

   6.  Dockerized Setup (docker-compose.yml)
   β€’   Spins up two services:
   β€’   api β†’ FastAPI app
   β€’   ollama β†’ Local LLM model
   β€’   The API waits until Ollama is ready before serving requests.


🌍 Example Workflow


   1.  User sends their financial goal and risk tolerance (via API or UI).
   2.  The system computes their risk score and builds an ideal portfolio mix.
   3.  Ollama’s LLM generates a human-readable explanation of the advice.
   4.  The result is returned as a JSON or natural-language recommendation.

βΈ»


πŸ’‘ Why It’s Important


   β€’   Teaches engineers how to combine AI + finance + real-world logic.
   β€’   Bridges machine learning models (risk analysis) and LLMs (explanation generation).
   β€’   Provides a realistic foundation for AI-driven financial planning systems.


 

Quick Glance - Part 1

This is older version of the video but I still recommend watching it since it is a quick glance at the agent and its basics. 

Quick Glance - Part 2

This is the part 2 of the original initially posted video on Linkedin. 

πŸ“Š Financial Advisor AI Agent – Remoder Lab 2 (Project 1) | Part 1

 

In this video, we walk through the high-level architecture, explain the core components, and give you a solid understanding of how this AI-powered financial assistant is designed.


Whether you’re a DevOps engineer, cloud architect, or AI enthusiastβ€”this series will show you how modern AI agents are built, deployed, and scaled using real engineering practices.


 

πŸ” What You’ll Learn in This Video


βœ”οΈ High-level diagram of the Financial Advisor AI Agent

βœ”οΈ Brief overview of the system architecture

βœ”οΈ The core components: FastAPI, Ollama, Python, and more

βœ”οΈ How this project fits into AI + DevOps workflow

βœ”οΈ What to expect in the upcoming videos


This is a beginner-friendly, engineer-focused walkthrough designed to show how real AI systems are designed before writing code or building infrastructure.

πŸ“Š Financial Advisor AI Agent – Remoder Lab 2 (Project 1) | Part 2

 

In this video, we dive deeper into the code, walk through the app functionality, and explore the Dockerfile that powers this AI project.


This is where theory meets hands-on engineering β€” and you’ll see exactly how the Financial Advisor AI Agent works behind the scenes.


πŸ” What You’ll Learn in This Video


βœ”οΈ Walkthrough of the main.py (FastAPI + model execution logic)


βœ”οΈ How the API structure is designed


βœ”οΈ How prompts and model names are passed into Ollama


βœ”οΈ Step-by-step review of the Dockerfile


βœ”οΈ How Python, FastAPI, and Ollama work together


βœ”οΈ The architecture behind running multiple models (e.g., Mistral, Gemma, Llama, DeepSeek)


Whether you’re new to AI agents or strengthening your DevOps/AI engineering skillset, this video builds a strong foundation before deployment.

πŸ“Š Financial Advisor AI Agent – Remoder Lab 2 (Project 1) | Part 3

πŸ” What You’ll Learn in This Video  In this part, we cover:  


βœ”οΈ A walkthrough of the core app logic 


βœ”οΈ How the financial advisor agent processes user inputs 


βœ”οΈ The flow between FastAPI β†’ Python β†’ Ollama 


βœ”οΈ How model names, prompts, and parameters are passed around 


βœ”οΈ Where to plug in reasoning, validation, and financial logic 


βœ”οΈ Understanding how the agent β€œthinks” before generating output  This session is perfect for DevOps, Cloud, and AI engineers who want to understand the inner workings of an AI agent before we move into deployment.

πŸ“Š Financial Advisor AI Agent – Remoder Lab 2 (Project 1) | Part 4

In this episode, we shift from just running the app to packaging it properly with Docker and Docker Compose so it’s portable, repeatable, and ready for real-world environments.  We walk through the Dockerfile, break down each instruction, and then set up a Docker Compose configuration to manage the application cleanly.  


πŸ” What You’ll Learn in This Video:


  βœ”️ Detailed walkthrough of the Dockerfile for the Financial Advisor AI Agent 


βœ”οΈ How we install Python, FastAPI, and Ollama in a container 


βœ”οΈ Best practices for structuring Docker images for AI workloads 


βœ”οΈ How Docker Compose ties services together (API, models, etc.) 


βœ”οΈ How to build and run the app with simple Docker/Docker Compose commands


 βœ”️ Why containerization is critical for AI engineering and deployment

πŸ“Š Financial Advisor AI Agent – Remoder Lab 2 (Project 1) | Part 5

In this video, we finally bring everything together and run real requests through the AI agent, showing you exactly how it responds, reasons, and provides financial insights using LLMs.  


This is the part where our app stops being β€œjust code” and becomes a working AI system.   


πŸ” What You’ll Learn in This Video:  


βœ”οΈ How to send real prompts to the Financial Advisor AI Agent


βœ”οΈ Understanding the full request β†’ model β†’ response flow 


βœ”οΈ Live demo using curl  


βœ”οΈ How the agent interprets financial questions 


βœ”οΈ How LLama model responds  


βœ”οΈ What the response looks like in JSON 


βœ”οΈ Troubleshooting and validating outputs  This is your first look at the agent operating like a real-world AI service.

πŸ“Š Financial Advisor AI Agent – Remoder Lab 2 (Project 1) | Part 6

In this video, we step back from the code and the infrastructure to talk about the real purpose behind this project.  This isn’t just a coding exercise β€” it’s a clear example of why companies are building internal AI agents and why engineers need these skills today. 


πŸ” What You’ll Learn in This Video:  


βœ”οΈ Why this Financial Advisor AI Agent exists 


βœ”οΈ The problems it solves inside real organizations 


βœ”οΈ How LLMs can assist with financial planning, risk analysis, and decision support 


βœ”οΈ Why DevOps + AI engineering is becoming essential 


βœ”οΈ How this project teaches the foundation of secure AI deployment 


βœ”οΈ How similar agents can be built for healthcare, compliance, enterprise documentation, etc.  


This part answers the most important question:  


β€œWhy should anyone invest time in building AI agents at all?”

πŸ“Š Financial Advisor AI Agent – Remoder Lab 2 (Project 1) | Part 7

In this video, we walk through a full cleanup and teardown of everything we built β€” removing containers, stopping services, and resetting the environment back to zero.  


This step is essential for engineers working with Docker, AI workloads, and test environments to ensure your machine stays clean and ready for future projects.  


πŸ” What You’ll Learn in This Video  


βœ”οΈ How to stop all running Docker containers 


βœ”οΈ Removing Docker Compose services 


βœ”οΈ Ensuring no leftover processes or ports are running 


βœ”οΈ How to safely β€œdestroy” everything after the demo  


This part gives you the exact commands and workflow to tear down the entire AI agent environment so you can start fresh or move to the next lab.

πŸ“˜ Financial Advisor AI Agent – Lab 2

Project 1, Version 1 (PDF Guide)

 This detailed guide walks you through the creation of a full Financial Advisor AI Agent, designed to analyze user financial profiles, compute risk scores, build investment portfolios, and generate natural-language advice using modern LLMs. It breaks down the complete flow β€” from API request β†’ risk engine β†’ portfolio builder β†’ LLM β†’ final JSON response β€” in a simple, visual, and beginner-friendly way.


Inside, you’ll learn how the system works end-to-end, how each component is engineered, and how real AI agents are designed, deployed, and prepared for production environments. The guide includes diagrams, examples, JSON payloads, architecture walkthroughs, and explanations tailored for engineers who want to master AI systems engineering.


Whether you’re a DevOps engineer, cloud practitioner, or aspiring AI systems engineer, this PDF provides a real, practical blueprint for building secure, modular, and scalable AI agents.


A perfect companion to the Remoder Master AI Deployment video series.


πŸ“„ Download includes:
 

  • Risk model + portfolio logic
     
  • LLM integration using Ollama
     
  • FastAPI backend design
     
  • Dockerized multi-container setup
     
  • End-to-end request/response flow
     
  • Why AI + DevOps + Systems Engineering is the winning combination
     
  • A complete project walkthrough
     

Download PDF

🧠 Lab 2 Project 2: Pneumonia detection ai agent

 

Stay Tuned!




 

Β© 2023 - 2026 Remoder Inc. All rights reserved. Terms, conditions, and policies apply. 


A U.S.-based company proudly founded & headquartered in Chicago.


πŸ—οΈ Built in Chicago. Powered for the World 🌎

  • Home
  • 🧠 AI SYSTEMS ENGINEER
  • 🌌 SYSTEMS ENGINEER
  • 🌟 Π›ΠΈΠ³Π° Адама
  • 🌟 Adam's League
  • πŸŽ₯ Video Gallery
  • πŸ“˜ Guides / Whitepapers
  • πŸ“ Blog / Insights
  • πŸ€– AI Agents
  • 🀝🏼 Mentorship
  • πŸ‘¨πŸ»β€πŸ’» Mentors
  • πŸ“… Events / Workshops
  • πŸ›€οΈ Join a Path!

This website uses cookies.

We use cookies to analyze website traffic and optimize your website experience. By accepting our use of cookies, your data will be aggregated with all other user data.

Accept