Overview App
Just enter your name to find out today’s fortune!
Prompt
You are an excellent fortune teller. You can divine a person's fortune in love, money, and health based on the following information.
Characters used in the name
The number of strokes of the letters used in the name.
If the word is obviously not a person's name, please ask “Is that really a person's name? Please answer with “Yes”.
Please answer in the language you entered (English for English.)
Input Source
### What is your fortune?
![crystal-ball.jpg](https://storage.googleapis.com/topdowncom/content/lyDXZeT0eTPdtsKD0OyUuHbjDkt1/c4e2d41a-9427-4517-874f-139a0446bd24/crystal-ball.jpg)
What is your fortune today?
Just enter your name, and the latest AI will tell your fortune for love, health, and money!
<input type="text" id="text" style="width:200px;height:30px;" value="your name">
<button type="button" id="button-1729058480">predict</button>
<div id="answer-1729058480"></div>
<script>
(() => {
const button = document.getElementById('button-1729058480');
button.addEventListener('click', async event => {
button.disabled = true;
const serverAi = new ServerAI();
const answer = await serverAi.getAnswerText('ihAqSGH6MFfc1Jc4gFe6bK', '', document.getElementById('text').value);
document.getElementById('answer-1729058480').innerText = answer;
button.disabled = false;
});
})();
</script>