The use cases for personal AI chat-bots will continue to grow as free models become more powerful and the larger players (Google Bard, OpenAI Chat-GPT) continue to apply more restrictions to their platforms. This post will build off of our previous post detailing how to get started with Mistral-7B-Instruct model using Python. We recommend reading … Read More “How To Program A Conversational AI (ChatBot) Using Mistral-7B-Instruct Tutorial” »
Category: Automation
This post will describe the process of working with the Mistral-7B-Instruct-v0.2 model using Python. The following steps will also work for the mistralai/Mistral-7B-Instruct-v0.1 model as well. The key difference between this model and the Mistral-7B (How To Get Started With Mistral-7B Tutorial) is that this model was fine-tuned to follow instructions. Its instruction following ability … Read More “How To Get Started With Mistral-7B-Instruct-v0.2 Tutorial” »
Mistral AI is a European start-up with a global focus specializing in generative artificial intelligence. They have created and trained several LLM (large language models) for free use. Some of the models have achieved performance that rivals or even out-performs OpenAI’s Chat GPT3.5. These models are available for public use. This post is specifically about … Read More “How To Get Started With Mistral-7B Tutorial” »
In recent years, generative AI has emerged as a powerful tool with the potential to revolutionize various aspects of our lives, from automating tasks to assisting with creative endeavors. Its ability to generate human-quality text has opened up new possibilities for enhancing productivity and streamlining workflows. In the realm of job applications, generative AI can … Read More “How To Hack AI To Generate The Perfect Resume” »
As the festive season approaches, the quest for unique and heartfelt holiday greetings intensifies. In the past, crafting meaningful messages for birthday and holiday cards was a task often met with writer’s block and creative struggles. However, the advent of AI-powered language models like Chat-GPT and Google Bard has revolutionized the way we approach personal … Read More “How To Hack AI To Craft Personalized Holiday Cards” »
Artificial intelligence (AI) has infiltrated various industries, profoundly impacting how professionals approach their work. This transformative technology has emerged as an indispensable tool, offering a range of capabilities to enhance productivity, innovation, and strategic decision-making. AI automates repetitive tasks, generates creative content, and tailors solutions to specific needs, empowering professionals to work more efficiently, effectively, … Read More “10 Ways AI Can Be Used To Hack Your Productivity” »
Google Bard and Chat-GPT (among other LLMs) can be used for many things. Some of the more productive uses include automating commenting for programming code. In this post, I will show various examples of how Google Bard can be used to generate comments for software developers. C/C++ For the examples, we will use a simple … Read More “How To Boost Software Development Productivity with AI-Powered Code Comments” »
Google’s AI, Bard, is a powerful tool that can answer your questions, generate text, and translate languages. However, it can’t read PDFs or text from webpages. If you want to use Bard with these types of documents, you’ll need to extract the text first. Then, the text can be copied into Bard’s prompt either manually … Read More “3 Easy Ways to Extract Text from PDFs for Bard” »
Bard is a large language model from Google AI, trained on a massive dataset of text and code. Bard can be used to work with JSON data in a variety of ways. In this article, we will cover how to use Bard to work with JSON data. We will provide examples of how to send … Read More “How to Use Bard to Work with JSON Data” »
In this post, we will show a simple Python script using Selenium and ChromeDriver to connect to CNBC.com and print out all headlines on the front page. ChromeDriver Before the code can talk with your Google Chrome web browser, you must download and install the proper ChromeDriver.exe file. See this post for instructions on how … Read More “Gather Headlines With This Simple Site Crawler” »