top of page

Mr. Hair Art STENCILS

Hair Art Stencil Fan Poster DISPLAY2.jpg

​Browse all our Stencil Designs below. Each one has a unique item # (Example: 101, 102, 103, etc).
 

If you've already paid for your order, and you are filling out our PICK YOUR STENCILS FORM to select the designs for your order, follow the steps below:

  1. Find the item # for the stencils you want us to include in your order.

  2. Enter them on the form.

  3. Submit the form.


For questions about your order, email us at order@mrhairart.com and a member of our team will respond in 24-48 hrs.

We don’t have any products to show here right now.

bottom of page
// npm install ws import WebSocket from 'ws'; const ws = new WebSocket('wss://api.x.ai/v1/realtime?agent_id=agent_ouzQwLpxYkee1q8O', { headers: { Authorization: `Bearer ${process.env.XAI_API_KEY}` }, }); ws.on('open', () => { ws.send(JSON.stringify({ type: 'conversation.item.create', item: { type: 'message', role: 'user', content: [{ type: 'input_text', text: 'Hello!' }] }, })); ws.send(JSON.stringify({ type: 'response.create' })); }); ws.on('message', raw => { const event = JSON.parse(raw.toString()); if (event.type === 'response.output_audio_transcript.delta') { process.stdout.write(event.delta); } else if (event.type === 'response.output_audio.delta') { const pcm = Buffer.from(event.delta, 'base64'); // decode and play } });