Beginner Tutorials
Basic Oobabooga Text-Ui Api Calls
Last Updated: November 22, 2024Subscribe to my youtube channel for Video Tutorials: https://www.youtube.com/@LibraryofCelsus(Channel not launched yet) Chat Api This guide walks you through making calls using the instruct method with the Oobabooga Api, passing on the instruction, username, and prompt to the main loop. Guide uses Llama 2 Chat formatting. 1. Define Initial Settings 2. Configure Request Within the...
Basic Open Ai Api Calls
Last Updated: November 22, 2024Chat-GPT This guide walks you through making calls using the Open Ai Api. 1. Pre-requisites and Initial Setup Before interacting with the OpenAI API, you must prepare your environment. 2. OpenAI API Request Configuration 3. Initializing the Main Loop 4. Define Chatbot & User Details 5. Interaction and Conversation Flow Guide the user through the chat...
Custom Conversation History List
Last Updated: November 22, 2024Subscribe to my youtube channel for Video Tutorials: https://www.youtube.com/@LibraryofCelsus(Channel not launched yet) For an example of how this is used, see: https://github.com/libraryofcelsus/Basic-Oobabooga-Chatbothttps://github.com/libraryofcelsus/Basic-OpenAi-Chatbot Step 1: Setting Up the Conversation Class The first step is to define the core of our system: a class to manage the conversation. We’ll name it MainConversation. 2. If a history file...