from fastapi import FastAPI, HTTPException from pydantic import BaseModel import openai import os # Initialize FastAPI app app = FastAPI() # Set your OpenAI API key openai.api_key = os.getenv("OPENAI_API_KEY") class ChatRequest(BaseModel): message: str user_id: str @app.post("/chat") async def chat_with_bot(request: ChatRequest): try: response = openai.ChatCompletion.create( model="gpt-4", messages=[{"role": "user", "content": request.message}] ) reply = response["choices"][0]["message"]["content"] return {"response": reply} except Exception as e: raise HTTPException(status_code=500, detail=str(e))
top of page

500 Hours Therapy Program

Student must complete 650 hours and additional 100 clinic hours of study to receives certificate
mandated by licensing regulation of Michigan State Massage Therapy board. This certificate
applies to other States as well. This 650-hour training is instructed bilingually, English and
Chinese, includes Anatomy, physiology, as well as introduction to principles and practices of
massage therapy, massage fundamentals, massage and body work, pathology, business and
success skill, health and wellness, etc.

bottom of page