Hacker News new | ask | show | jobs
by freesam 638 days ago
Here, we use the OpenAI assistant API Math tutor example (https://platform.openai.com/docs/assistants/quickstart ) to create a math tutor.

In the website link ( https://openai-assistant-demo.chat-data.com/ ), you can input your personal information, for example, "My lucky number is 889837"

Then you asked the math tutor, "What is double of my lucky number"

The chatbot will reply

# Defining the lucky number lucky_number = 889837

# Calculating the double of the lucky number double_lucky_number = lucky_number * 2 double_lucky_number The double of your lucky number, 889837, is 1,779,674.

It means that you can directly pass the personal information of your customer to your open AI assitant API to create a personalized experience.