From 9f9df25dcc7ccc48d1ccd94e6f31b019a704d528 Mon Sep 17 00:00:00 2001 From: psun247 <31531761+psun247@users.noreply.github.com> Date: Wed, 10 Jan 2024 14:54:08 -0800 Subject: [PATCH] Update README.md --- README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index b545c7c..8acb84c 100644 --- a/README.md +++ b/README.md @@ -1,27 +1,27 @@ -# Note -See the latest ChatGPT with GPT-3.5 Turbo model and WPF Shazam, check out my ShazamDesk project: +# Project Note +To see the latest ChatGPT with GPT-3.5 model turbo and WPF Shazam, check out my ShazamDesk project: https://github.com/psun247/ShazamDesk # C# WPF ChatGPT C# WPF app that mimics ChatGPT website UI -![image](https://github.com/psun247/CSharpWpfChatGPT/assets/31531761/6de00aa6-6beb-4a8e-8108-84daa13b941b) +![image](https://github.com/psun247/CSharpWpfChatGPT/assets/31531761/6a73a4e9-a29d-450d-9ef0-d1151651a4bb) -![image](https://github.com/psun247/CSharpWpfChatGPT/assets/31531761/107506c4-7c82-4b2f-b2f0-dd5b1e26e0bf) +![image](https://github.com/psun247/CSharpWpfChatGPT/assets/31531761/97370b00-367e-4882-a52b-dd4beaa631b4) # Setup Create an Open AI account to obtain an API key: https://platform.openai.com/account/api-keys You can use the key as a command line parameter (without compiling the project): -1. Click CSharpWpfChatGPT_v1.1 under Releases on the right side of this page -2. Download CSharpWpfChatGPT_v1.1_net6.0-windows.zip -3. Unzip the file and run CSharpWpfChatGPT.exe /the key obtained above +1. Click CSharpWpfChatGPT_v1.2 under Releases on the right side of this page +2. Download CSharpWpfChatGPT_v1.2_net6.0-windows.zip +3. Unzip the file and run CSharpWpfChatGPT.exe /the key obtained above (CSharpWpfChatGPT.exe /sk-Ih...WPd) Or in App.xaml.cs, modify this line: return ""; -Build CSharpWpfChatGPT.sln with Visual Studio 2022. This app is targeted for .NET 6 and 7. +Build CSharpWpfChatGPT.sln with Visual Studio 2022. This app is targeted for .NET 6 and 8. # Whetstone.ChatGPT I used John Iwasz's excellent Whetstone.ChatGPT to do the heavy lifting for ChatGPT API calls.