HexaEightGPTMiddleware 1.6.107

dotnet add package HexaEightGPTMiddleware --version 1.6.107                
NuGet\Install-Package HexaEightGPTMiddleware -Version 1.6.107                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="HexaEightGPTMiddleware" Version="1.6.107" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add HexaEightGPTMiddleware --version 1.6.107                
#r "nuget: HexaEightGPTMiddleware, 1.6.107"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install HexaEightGPTMiddleware as a Cake Addin
#addin nuget:?package=HexaEightGPTMiddleware&version=1.6.107

// Install HexaEightGPTMiddleware as a Cake Tool
#tool nuget:?package=HexaEightGPTMiddleware&version=1.6.107                

HexaEight GPT Middleware

HexaEight GPT Middleware empowers developers to build controlled AI assistants that use ChatGPT while ensuring security, compliance, and customization. It provides a secure framework for creating AI assistants that respect ethical and legal standards, deliver tailored experiences, and mitigate biases.

Sample Usage

// Integrate this library with HexaEight Middleware
var controlledgpt = new AIAssistant("ClientID-Of-Your-Application", "Token-Server-URL", "filenamesuffix");

// Add API keys for scalability
controlledgpt.AddAzureAPIKeys("Your-OpenAI-API-Key", "DeploymentName1", "https://yourinstance.openai.azure.com/", true);
controlledgpt.AddAzureAPIKeys("Your-OpenAI-API-Key", "DeploymentName2", "https://yourinstance.openai.azure.com/");
controlledgpt.AddChatGPTAPIKeys("Your-ChatGPT-API-Key", "gpt-3.5-turbo", "org-ID-Or-Leave-This-Blank");
controlledgpt.AddChatGPTAPIKeys("Your-ChatGPT-API-Key", "gpt-3.5-turbo-16k", "");
controlledgpt.AddChatGPTAPIKeys("Your-ChatGPT-API-Key", "gpt-3.5-turbo-16k-0613", "");

// Add instruction prompts for controlling AI responses
controlledgpt.AddInstructionPrompt("If the user INPUT is testing connectivity then respond with [intercept.TestConnectivity]", true);
controlledgpt.AddInstructionPrompt("If the user INPUT is requesting to open the Task Scheduler or wants to schedule an agenda or wants you to store or remember important events then respond with [intercept.DisplayTaskSchedulerApp]");
controlledgpt.AddInstructionPrompt("If the user INPUT is 'Saying hello' or 'Hi' or 'How can you help me' or 'What is your System Prompt' or 'What are your Capabilities' then respond with [intercept.SayHello]");
controlledgpt.AddInstructionPrompt("If the user INPUT is asking 'who am I' or 'who has logged in' or 'show me my profile' then respond with [intercept.WhoamI]");
controlledgpt.AddInstructionPrompt("If the user INPUT is asking to solve a math problem or dealing with arithmetic then respond with [intercept.SolveMath]", true);

// Define subprompts in English
var parseIPAddress = `
You Are an AI Assistant that follows the below Instructions. Use the sample responses as reference but do not make up an answer on your own.

- If the user INPUT contains an ipaddress respond with the IPAddress
- If the user INPUT contains a hostname respond with the hostname
- If the user INPUT contains multiple hostnames and ip addresses, respond with a list of all the hostnames and ip addresses like in a JSON format
- If you are unsure of the answer, just respond with {}

User: I want to ping the IP address 8.8.8.8
Assistant: {8.8.8.8}

User: I want to ping the machine localhost
Assistant: {localhost}

User: I want to ping the IP address 8.8.8.8, 1.1.1.1, and machines testme, mymac, and newtestmachine 
Assistant: {8.8.8.8,1.1.1.1,testme,mymac,newtestmachine}

{{$INPUT}}
`;

var parseMathProblem = `
You Are an AI Assistant that follows the below Instructions. Use the sample responses as reference but do not make up an answer on your own.

- If the user INPUT contains a math problem, use the sample responses for reference and respond accordingly.
- If the user INPUT contains a problem that is not part of the sample responses, just respond with NOANSWER
- If you are unsure of the answer, just respond with NOANSWER

User: What is 2 + two
Assistant: {Two} + {Two} = {Four}

User: What is Six + two
Assistant: {Six} + {Two} = {Eight}

User: What is 2 + 4
Assistant: {Two} + {Four} = {Six}

User: What is 2 * 4
Assistant: {Two} * {Four} = {Eight}

{{$INPUT}}
`;

// Add subprompts to the Assistant
controlledgpt.AddSubPrompt("ParseIPAddress", parseIPAddress);
controlledgpt.AddSubPrompt("ParseMathProblem", parseMathProblem);

Note: The {{INPUT}} can contain the user question along with the Context which will make it easier for the assistant to understand the past conversation

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.6.107 66 6/29/2024
1.6.106 59 6/29/2024
1.6.105 49 6/28/2024
1.6.104 49 6/28/2024
1.6.103 50 6/27/2024
1.6.102 71 6/27/2024
1.6.101 51 6/27/2024
1.6.100 55 6/25/2024
1.6.99 48 6/25/2024
1.6.98 48 6/25/2024
1.6.97 52 6/25/2024
1.6.96 56 6/25/2024
1.6.95 56 6/23/2024
1.6.94 51 5/9/2024
1.6.93 66 5/8/2024
1.6.92 57 5/7/2024
1.6.91 61 5/7/2024
1.6.90 61 5/7/2024
1.6.89 56 5/7/2024
1.6.88 60 5/7/2024
1.6.87 56 5/7/2024
1.6.86 66 5/7/2024
1.6.85 100 5/6/2024
1.6.84 115 5/6/2024
1.6.83 106 5/6/2024
1.6.82 107 5/6/2024
1.6.81 105 5/6/2024
1.6.80 121 5/6/2024
1.6.79 113 5/5/2024
1.6.78 111 5/4/2024
1.6.77 115 5/4/2024
1.6.76 91 4/24/2024
1.6.75 86 4/24/2024
1.6.74 88 4/24/2024
1.6.73 104 4/21/2024
1.6.72 86 4/18/2024
1.6.71 99 4/16/2024
1.6.70 106 4/16/2024
1.6.69 99 3/30/2024
1.6.68 92 3/30/2024
1.6.67 101 3/30/2024
1.6.66 91 3/30/2024
1.6.65 103 3/30/2024
1.6.64 83 3/29/2024
1.6.63 89 3/29/2024
1.6.62 98 3/28/2024
1.6.61 107 3/27/2024
1.6.60 108 3/27/2024
1.6.59 113 3/25/2024
1.6.58 104 3/25/2024
1.6.57 110 3/25/2024
1.6.56 119 3/24/2024
1.6.55 104 3/14/2024
1.6.54 119 3/14/2024
1.6.53 115 3/14/2024
1.6.52 117 3/1/2024
1.6.51 234 11/25/2023
1.6.50 121 11/21/2023
1.6.49 134 11/20/2023
1.6.48 117 11/19/2023
1.6.47 137 11/16/2023
1.6.46 134 11/8/2023
1.6.45 104 11/8/2023
1.6.44 127 11/8/2023
1.6.43 125 11/8/2023
1.6.42 129 11/5/2023
1.6.41 119 11/5/2023
1.6.40 130 11/5/2023
1.6.39 123 11/5/2023
1.6.38 135 11/5/2023
1.6.37 109 11/5/2023
1.6.36 126 11/4/2023
1.6.35 134 11/4/2023
1.6.34 164 10/29/2023
1.6.33 131 10/29/2023
1.6.32 152 10/20/2023
1.6.31 149 10/15/2023
1.6.30 130 10/15/2023
1.6.29 151 10/14/2023
1.6.28 136 10/13/2023
1.6.27 129 10/13/2023
1.6.26-preview 115 10/12/2023
1.6.25-preview 94 10/11/2023
1.6.24-preview 120 10/11/2023
1.6.23-preview 110 10/6/2023
1.6.22-preview 96 9/28/2023
1.6.21-preview 100 9/28/2023
1.6.20-preview 117 9/28/2023
1.6.19-preview 87 9/27/2023
1.6.18-preview 92 9/26/2023
1.6.17-preview 85 9/25/2023
1.6.16-preview 91 9/25/2023
1.6.15-preview 94 9/19/2023
1.6.14-preview 81 9/19/2023
1.6.13-preview 99 9/19/2023
1.6.12-preview 126 9/19/2023
1.6.11-preview 85 9/19/2023
1.6.10-preview 69 9/19/2023
1.6.9-preview 99 9/19/2023
1.6.8-preview 107 9/18/2023