If you're exploring AI integration in your .NET apps, start with ๐๐๐๐ฟ๐ฒ ๐๐ ๐ฆ๐ฒ๐ฟ๐๐ถ๐ฐ๐ฒ๐ โ a powerful suite of pre-built AI tools offered by Microsoft.
โ ๐๐๐๐ฟ๐ฒ ๐๐ ๐ฆ๐ฒ๐ฟ๐๐ถ๐ฐ๐ฒ๐
Azure AI Services are cloud-based APIs that help you add ๐๐ ๐ณ๐ฒ๐ฎ๐๐๐ฟ๐ฒ๐ ๐น๐ถ๐ธ๐ฒ ๐๐ถ๐๐ถ๐ผ๐ป, ๐๐ฝ๐ฒ๐ฒ๐ฐ๐ต, ๐น๐ฎ๐ป๐ด๐๐ฎ๐ด๐ฒ, ๐ฎ๐ป๐ฑ ๐ฑ๐ฒ๐ฐ๐ถ๐๐ถ๐ผ๐ป-๐บ๐ฎ๐ธ๐ถ๐ป๐ด to your applicationsโwithout needing deep AI knowledge.
โ ๐ ๐ผ๐๐ ๐ฃ๐ผ๐ฝ๐๐น๐ฎ๐ฟ ๐๐๐๐ฟ๐ฒ ๐๐ ๐ฆ๐ฒ๐ฟ๐๐ถ๐ฐ๐ฒ๐:
- ๐๐๐๐ฟ๐ฒ ๐ข๐ฝ๐ฒ๐ป๐๐ ๐ฆ๐ฒ๐ฟ๐๐ถ๐ฐ๐ฒ โ for ChatGPT, summarization, Q&A
- ๐ฆ๐ฝ๐ฒ๐ฒ๐ฐ๐ต ๐ฆ๐ฒ๐ฟ๐๐ถ๐ฐ๐ฒ โ for speech-to-text and text-to-speech
- ๐ง๐ฟ๐ฎ๐ป๐๐น๐ฎ๐๐ผ๐ฟ โ for real-time language translation
- ๐๐ผ๐ฟ๐บ ๐ฅ๐ฒ๐ฐ๐ผ๐ด๐ป๐ถ๐๐ฒ๐ฟ โ for reading invoices, receipts, and forms
- ๐๐ผ๐บ๐ฝ๐๐๐ฒ๐ฟ ๐ฉ๐ถ๐๐ถ๐ผ๐ป โ for image analysis and text detection in images
- ๐๐ฎ๐ป๐ด๐๐ฎ๐ด๐ฒ ๐จ๐ป๐ฑ๐ฒ๐ฟ๐๐๐ฎ๐ป๐ฑ๐ถ๐ป๐ด (๐๐จ๐๐ฆ) โ for intent detection from text
โ ๐๐ฑ๐๐ฎ๐ป๐๐ฎ๐ด๐ฒ๐:
- Easy to integrate with .NET APIs
- No need to train your own models
- Scalable and secure
- Real-time processing support
- Backed by Microsoftโs AI infrastructure
โ ๐ฆ๐ฎ๐บ๐ฝ๐น๐ฒ ๐๐ผ๐ฑ๐ฒ (๐ฆ๐ฝ๐ฒ๐ฒ๐ฐ๐ต ๐๐ผ ๐ง๐ฒ๐ ๐):
var speechConfig = SpeechConfig.FromSubscription("YourKey", "YourRegion");
var recognizer = new SpeechRecognizer(speechConfig);
var result = await recognizer.RecognizeOnceAsync();
Console.WriteLine(result.Text);
๐๐ฎ๐๐ฒ ๐๐ผ๐ ๐ฒ๐๐ฒ๐ฟ ๐๐ฟ๐ถ๐ฒ๐ฑ ๐ฎ๐ฑ๐ฑ๐ถ๐ป๐ด ๐๐ ๐๐ผ ๐๐ผ๐๐ฟ .๐ก๐๐ง ๐ฎ๐ฝ๐ฝ? ๐ช๐ต๐ถ๐ฐ๐ต ๐๐๐๐ฟ๐ฒ ๐๐ ๐ฆ๐ฒ๐ฟ๐๐ถ๐ฐ๐ฒ ๐๐ผ๐๐น๐ฑ ๐๐ผ๐ ๐๐๐ฒ ๐ณ๐ถ๐ฟ๐๐โ๐ข๐ฝ๐ฒ๐ป๐๐, ๐ฆ๐ฝ๐ฒ๐ฒ๐ฐ๐ต, ๐ผ๐ฟ ๐ฉ๐ถ๐๐ถ๐ผ๐ป?
Top comments (0)