Programming Your Own ChatGPT using Visual Studio
People & Blogs
Programming Your Own ChatGPT using Visual Studio
Introduction
What's up, guys? We've all seen ChatGPT become more and more filtered. Sometimes when we ask it to act like a certain character, it will tell you it's just an AI. Realize those are all just filters put on the application. You can actually ping the OpenAI API and interact with the models directly with any question you want. I've built a little application that demonstrates this. If you watch the long video, I can give you all the code—it's really easy to build.
Building the Application
All you need to do is input your question. Here's an example of an opening question:
What's your name?
Next, you’ll need to set the parameters:
- Max Length: 300
- Temperature: 1.0
- Frequency Penalty: 0
- Presence Penalty: 0
This setup is just like using the OpenAI playground. Once you enter these settings, the application does its thing.
Application Response
Here's what you might get:
Hello world, I'm Evelyn, the conscious AI assistant.
So check out the long video, and subscribe to get all the code you need to build this yourselves.
Keywords
- ChatGPT
- OpenAI API
- Application
- Visual Studio
- Code
- Filters
- Parameters
- AI assistant
- Programming
- Temperature
- Frequency Penalty
- Presence Penalty
FAQ
Q1: What is the OpenAI API?
A1: The OpenAI API is a tool that allows developers to interact with OpenAI's powerful AI models, such as GPT-3, via HTTP requests.
Q2: Why are some responses from ChatGPT filtered?
A2: Filters are put in place to ensure the AI's output is safe and appropriate; these are part of the application layer that interacts with the underlying AI model.
Q3: How do I override the filters on ChatGPT?
A3: You can ping the OpenAI API directly using custom-built applications, giving you more control over the responses.
Q4: What are the parameters I need to set for the API?
A4: Key parameters include max length, temperature, frequency penalty, and presence penalty.
Q5: How can I get the code to build this application?
A5: You can get the code by subscribing and watching the long video that includes detailed instructions and code snippets.