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

Oriental Massage Therapy Program

Mar 1, 2025 - Dec 31, 2025

  • 306 Days
  • 3 Steps

About

The Oriental Medicine Massage Therapy Program at the Michigan School of Oriental Medicine is designed to integrate traditional Eastern healing techniques with modern Western massage therapy. This unique program provides students with the knowledge and hands-on experience necessary to become skilled massage therapists, specializing in both therapeutic and holistic treatments.

You can also join this program via the mobile app. Go to the app

Instructors

Price

$8,800.00

Share

bottom of page