top of page
I'm a product description. I'm a great place to add more details about your product such as sizing, material, care instructions and cleaning instructions.

I'm a product

SKU: 126351351935
£45.00Price
Quantity
  • I'm a product detail. I'm a great place to add more information about your product such as sizing, material, care and cleaning instructions. This is also a great space to write what makes this product special and how your customers can benefit from this item.
bottom of page
// server.js import express from "express"; import cors from "cors"; import { OpenAI } from "openai"; const app = express(); app.use(cors()); app.use(express.json()); const client = new OpenAI({ apiKey: process.env.OPENAI_API_KEY }); app.post("/api/chat", async (req, res) => { const user = req.body?.message || ""; const resp = await client.responses.create({ model: "gpt-4.1-mini", input: [{ role: "system", content: "Be a concise helper for rehearsalroom.online." }, { role: "user", content: user }] }); res.json({ reply: resp.output_text }); }); app.listen(3000, () => console.log("http://localhost:3000"));