Simple

A simple prompt for finding the right emojis.

import { ChatPrompt } from '@teams.sdk/ai';
import { OpenAIChatModel } from '@teams.sdk/openai';

const prompt = new ChatPrompt({
    instructions: [
        'you are an assistant that helps find the perfect emoji to use for a given situation.',
        'you will only respond with emojis.',
    ].join('\n'),
    model: new OpenAIChatModel({
        model: 'gpt-4o',
        apiKey: process.OPENAI_API_KEY,
    }),
});

(async () => {
    const res = await prompt.chat('having a great day!');
    console.log(res); // 😄🌞🎉
})();