Skip to main content

Posts

Showing posts with the label AI

I Tried Structured Prompt-Driven Development (SPDD). Here’s What I Think.

After spending a day trying Structured Prompt-Driven Development (SPDD) , I came away thinking it is a genuinely useful addition to the AI-assisted development toolbox—but not a replacement for every kind of work. SPDD , as described by Thoughtworks and implemented in the open-source open-spdd project, treats prompts as first-class engineering artifacts. Rather than relying on a series of chats that disappear into history, you create a structured prompt, keep it under version control, use it to generate code, and update it when the code or requirements change. In principle, that sounds obvious. If prompts influence implementation, why should they be less durable than the code they produce? In practice, I found it more useful than I expected. What worked well The biggest benefit was task analysis. SPDD pushed me to think through missing parts, unclear assumptions, and potential inconsistencies before I asked the model to write code. This was valuable because the hard part was not gener...

A Guide to Generating Fantasy Novels with GPT-Author

GPT-Author is an innovative tool that allows users to generate original fantasy novels using GPT-4 and the Stable Diffusion API. With just an initial prompt and the desired number of chapters, GPT-Author can create a complete novel in just a few minutes and output it as an EPUB file. In this blog post, we will explore how to run and use this tool to generate your very own fantasy novel. How it Works GPT-Author uses artificial intelligence to generate a list of potential plots based on a given prompt. It then selects the most engaging plot, improves upon it, and extracts a title. Next, it generates a detailed storyline with a specified number of chapters and improves the storyline. Each chapter is then individually written by the AI, following the plot and taking into account the content of previous chapters. Finally, a prompt to design the cover art is generated, and the cover is created. The novel is then compiled into an EPUB file for users to download and read. Usage GPT-Author can...

PrivateGPT: A Step-by-Step Guide to Installation and Use

In this blog post, we will explore the ins and outs of PrivateGPT, from installation steps to its versatile use cases and best practices for unleashing its full potential. What is PrivateGPT? PrivateGPT is a cutting-edge program that utilizes a pre-trained GPT (Generative Pre-trained Transformer) model to generate high-quality and customizable text. Built on OpenAI's GPT architecture, PrivateGPT introduces additional privacy measures by enabling you to use your own hardware and data. This ensures that your content creation process remains secure and private. Installation Steps Before we dive into the powerful features of PrivateGPT, let's go through the quick installation process. PrivateGPT is a command line tool that requires familiarity with terminal commands. Let's get started: 1. Clone the Repository: Begin by cloning the PrivateGPT repository from GitHub using the following command: ``` git clone https://github.com/imartinez/privateGPT.git ``` 2.Navigate to the Direc...