5/24/2023 - Create a C# OpenAI ChatGPT Plugin
In the ever-evolving world of artificial intelligence, OpenAI's ChatGPT has emerged as a powerful tool for creating dynamic and engaging conversational experiences. However, integrating this technology into your own applications may seem daunting. Fear not! In this blog post, we will guide you through the process of creating a simple ChatGPT plug-in using C#. In this article we will create a C# version of the OpenAI plugin TO DO example . A special thanks to this article: How t
5/6/2023 - Blazor OpenAI Configurator
Video: https://www.youtube.com/watch?v=cN-ZDgaaqyM Using natural human language to generate text and images with OpenAI models is very exciting. In this blog post, we will discuss the process of building a Microsoft Blazor application that accepts text input through a microphone or a textbox and converts it into a JSON representation. This JSON data will then be used to generate a folder Tree . Additionally, the application will enable users to modify the Tree
3/6/2023 - Build Your Own ChatGPT Client in Blazor
The OpenAI GPT-3.5-Turbo API is a powerful tool that allows developers to create cutting-edge applications that can understand, analyze, and generate human-like text. With Microsoft Blazor , we can harness the power of this API to create a seamless client experience. In this blog post, we will explore how we can use Microsoft Blazor to build a client that calls the new OpenAI GPT-3.5-Turbo API , and demonstrate some of the exciting possibilities that this combination brings.
2/6/2023 - Blazor and Azure OpenAI
You can consume services in Azure OpenAI with Microsoft Blazor . The sample code, available on the downloads page of this site ( BlazorHelpWebsite.com ), demonstrates how to create a completion using the text-davinci-002 model. A completion can logically complete a prompt provided to it, or answer simple questions. The text-davinci-002 model can also perform other functions such as summarizing documents or classifying or categorizing documents. Set
1/28/2023 - Playing Dynamic Audio In Server Side Blazor
(Note: YouTube video is at: https://www.youtube.com/watch?v=TRgYmTNmXT8&t=33s ) You can play dynamic audio in a Blazor Server application and have full control over the user interface. < audio controls = "controls" >
< source src = "https://bit.ly/404yhS9" type = "audio/mp3" >
</ audio >
Playing an audio file in Blazor is simple. Just enter a tag like this, with the source pointing to a MP3 file.
When
|