Public follow-up notes and minimal service template after an AI for Thai workshop
Find a file
2026-06-30 04:39:48 +02:00
docs Initial public AI for Thai workshop notes 2026-06-30 04:39:48 +02:00
templates/minimal-fastapi-service Initial public AI for Thai workshop notes 2026-06-30 04:39:48 +02:00
.gitignore Initial public AI for Thai workshop notes 2026-06-30 04:39:48 +02:00
README.md Initial public AI for Thai workshop notes 2026-06-30 04:39:48 +02:00

AI for Thai workshop notes

Public follow-up notes after an AI service deployment workshop in Thailand.

This repository is not an official workshop mirror. It does not redistribute slides, PDFs, private notes, credentials, or copyrighted training material.

It contains only:

  • our public follow-up notes;
  • a small FastAPI service template;
  • Docker / Docker Compose commands for practice;
  • simple questions a learner can ask after a workshop.

Why this exists

Workshops are useful, but many people need a quiet place to try again after the session.

This repo is for that moment:

  1. read the idea;
  2. run a tiny service;
  3. test /health and /predict;
  4. change one line;
  5. rebuild.

No shame. Start small.

Repository map

docs/
  follow-up.md
  workshop-survival.md
templates/
  minimal-fastapi-service/

What is intentionally not included

  • workshop PDFs;
  • private screenshots;
  • personal conversations;
  • API keys;
  • raw platform credentials;
  • internal lab traces.

First run

cd templates/minimal-fastapi-service
python -m venv .venv
.\.venv\Scripts\python -m pip install -r requirements.txt
.\.venv\Scripts\python -m uvicorn app.main:app --host 127.0.0.1 --port 8000

Test:

curl http://127.0.0.1:8000/health
curl -Method POST http://127.0.0.1:8000/predict -ContentType "application/json" -Body '{"text":"สวัสดี","mode":"explain"}'