- Update TpmjsToolDefinitionSchema to only use 'name' field - Add 'sandbox' as valid category for sprites tools - Update all package.json files to use 'name' instead of 'exportName' - Update documentation and source files accordingly - Add 11 new sprites tools for sandbox/code-execution |
||
|---|---|---|
| .. | ||
| src | ||
| CHANGELOG.md | ||
| package.json | ||
| README.md | ||
| tsconfig.json | ||
@tpmjs/emoji-magic
AI SDK tools for emoji conversion and mood detection. Make your text more expressive! ✨
Tools
textToEmoji
Convert text into emoji representations - perfect for making messages more expressive!
import { textToEmoji } from '@tpmjs/emoji-magic';
const result = await textToEmoji.execute({
text: "I love my cat and dog",
style: 'creative'
});
// Result: "I ❤️ my 🐱 and 🐶"
emojiMood
Detect the mood/sentiment and suggest appropriate emojis for the text.
import { emojiMood } from '@tpmjs/emoji-magic';
const result = await emojiMood.execute({
text: "This is amazing! I'm so excited!",
count: 3
});
// Returns: { mood: 'excited', suggestions: ['🎉', '🎊', '🥳'] }
Installation
npm install @tpmjs/emoji-magic
License
MIT