├── .gitignore ├── NChatGPTRev.sln ├── NChatGPTRev ├── Chatbot.cs ├── Extensions │ └── CollectionExtension.cs ├── Models │ ├── Conversation.cs │ ├── Profile.cs │ └── Reply.cs ├── NChatGPTRev.csproj └── OpenAISession.cs ├── NChatGTPRev.Start ├── NChatGTPRev.Start.csproj └── Program.cs └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceQiu1996/NChatGPTRev/HEAD/.gitignore -------------------------------------------------------------------------------- /NChatGPTRev.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceQiu1996/NChatGPTRev/HEAD/NChatGPTRev.sln -------------------------------------------------------------------------------- /NChatGPTRev/Chatbot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceQiu1996/NChatGPTRev/HEAD/NChatGPTRev/Chatbot.cs -------------------------------------------------------------------------------- /NChatGPTRev/Extensions/CollectionExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceQiu1996/NChatGPTRev/HEAD/NChatGPTRev/Extensions/CollectionExtension.cs -------------------------------------------------------------------------------- /NChatGPTRev/Models/Conversation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceQiu1996/NChatGPTRev/HEAD/NChatGPTRev/Models/Conversation.cs -------------------------------------------------------------------------------- /NChatGPTRev/Models/Profile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceQiu1996/NChatGPTRev/HEAD/NChatGPTRev/Models/Profile.cs -------------------------------------------------------------------------------- /NChatGPTRev/Models/Reply.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceQiu1996/NChatGPTRev/HEAD/NChatGPTRev/Models/Reply.cs -------------------------------------------------------------------------------- /NChatGPTRev/NChatGPTRev.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceQiu1996/NChatGPTRev/HEAD/NChatGPTRev/NChatGPTRev.csproj -------------------------------------------------------------------------------- /NChatGPTRev/OpenAISession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceQiu1996/NChatGPTRev/HEAD/NChatGPTRev/OpenAISession.cs -------------------------------------------------------------------------------- /NChatGTPRev.Start/NChatGTPRev.Start.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceQiu1996/NChatGPTRev/HEAD/NChatGTPRev.Start/NChatGTPRev.Start.csproj -------------------------------------------------------------------------------- /NChatGTPRev.Start/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceQiu1996/NChatGPTRev/HEAD/NChatGTPRev.Start/Program.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceQiu1996/NChatGPTRev/HEAD/README.md --------------------------------------------------------------------------------