Public follow-up notes and minimal service template after an AI for Thai workshop
| docs | ||
| templates/minimal-fastapi-service | ||
| .gitignore | ||
| README.md | ||
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:
- read the idea;
- run a tiny service;
- test
/healthand/predict; - change one line;
- 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"}'