<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>AutoGPT Archives - Be on the Right Side of Change</title>
	<atom:link href="https://blog.finxter.com/category/autogpt/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.finxter.com/category/autogpt/</link>
	<description></description>
	<lastBuildDate>Sun, 11 Feb 2024 21:00:55 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://blog.finxter.com/wp-content/uploads/2020/08/cropped-cropped-finxter_nobackground-32x32.png</url>
	<title>AutoGPT Archives - Be on the Right Side of Change</title>
	<link>https://blog.finxter.com/category/autogpt/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>How to Set Up AutoGen Studio with Docker</title>
		<link>https://blog.finxter.com/how-to-set-up-autogen-studio-with-docker/</link>
		
		<dc:creator><![CDATA[Dirk van Meerveld]]></dc:creator>
		<pubDate>Sun, 11 Feb 2024 21:00:30 +0000</pubDate>
				<category><![CDATA[Artificial Intelligence]]></category>
		<category><![CDATA[AutoGPT]]></category>
		<category><![CDATA[Automation]]></category>
		<category><![CDATA[Large Language Model (LLM)]]></category>
		<category><![CDATA[Prompt Engineering]]></category>
		<guid isPermaLink="false">https://blog.finxter.com/?p=1654847</guid>

					<description><![CDATA[<p>Hi and welcome to this tutorial series on AutoGen Studio. My name is Dirk van Meerveld, and I&#8217;ll be your host and guide for this three part tutorial series where we&#8217;ll take a look at AutoGen Studio. 👉 Go Back to the Full Course: Next Level Prompt Engineering with AutoGen Studio AutoGen Studio is an ... <a title="How to Set Up AutoGen Studio with Docker" class="read-more" href="https://blog.finxter.com/how-to-set-up-autogen-studio-with-docker/" aria-label="Read more about How to Set Up AutoGen Studio with Docker">Read more</a></p>
<p>The post <a href="https://blog.finxter.com/how-to-set-up-autogen-studio-with-docker/">How to Set Up AutoGen Studio with Docker</a> appeared first on <a href="https://blog.finxter.com">Be on the Right Side of Change</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Hi and welcome to this tutorial series on AutoGen Studio. My name is Dirk van Meerveld, and I&#8217;ll be your host and guide for this three part tutorial series where we&#8217;ll take a look at AutoGen Studio.</p>



<p class="has-ast-global-color-4-background-color has-background"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f449.png" alt="👉" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <a href="https://academy.finxter.com/university/next-level-prompt-engineering-with-autogen-studio/">Go Back to the Full Course: Next Level Prompt Engineering with AutoGen Studio</a></p>



<p>AutoGen Studio is an open-source interface that runs on top of AutoGen. This combination will allow us to work with LLMs and give them skills (like tools/functions) that they can use and also allows us to use agents and even define multi-agent workflows. Think of it as a multi-agent framework. One of the most amazing features is that it can write and execute code on the fly to solve problems!</p>



<p>On top of that AutoGen Studio provides us with a sleek and easy-to-use interface to define all the above and chat with our agents, much of it without even having to write code! This truly is next-level prompt engineering and over the coming lessons, we will harness the power of digital agents and see them collaborate with each other!</p>



<p>In this first part, we&#8217;ll focus on the setup and take some time to properly get started. If you&#8217;re a more seasoned developer and intimately familiar with a particular topic like Docker, feel free to skip ahead a bit here and there, but we&#8217;ll cover all the bases so that everybody can follow along nicely. This is especially so as much of AutoGen Studio can be used via the interface which makes it more accessible to non-coders. We will leave no man or woman behind!</p>



<h2 class="wp-block-heading">AutoGen safety measures</h2>



<p>In order to answer more complex requests AutoGen will actually write Python code for you and execute this Python code on your local computer.</p>



<p>For example, there is a demo question where you ask the following question: <code>"Plot a chart of NVDA and TESLA stock price for 2023. Save the result to a file named nvda_tesla.png"</code>. AutoGen will solve this question by writing Python code to get the stock prices, install needed libraries to execute the code, write code for creating the graph in MathPlotLib, etc… It will then execute this code on your local computer and return the result to you.</p>



<p>The problem occurs where operating systems of course have some kind of built-in security. Generally, the <code>Execution Policy</code> on your OS will prevent AutoGen (and others) from just running random code and scripts on your computer. And this is a good thing! One solution would be to loosen up the <code>Execution Policy</code> on your computer, but this is not really the best idea. Even if you don&#8217;t have an Execution Policy problem on your system, do you really want to have any and all AI-generated code running on your machine without any checks or balances? It&#8217;s a bit dangerous, to say the least.</p>



<h2 class="wp-block-heading">Why we won&#8217;t use Anaconda</h2>



<p>Many tutorials try to take the 100% no-code approach, using Anaconda for virtual environments and not using an IDE like VS Code altogether in an attempt to claim that &#8216;You don&#8217;t need to know any code at all&#8217;. Then you will:</p>



<ul class="wp-block-list">
<li>Still have to install Docker as well as Anaconda, in order to allow safe code execution inside of a Docker container.</li>



<li>Set your API key over and over every time you reload.</li>



<li>Type the same Anaconda commands over and over.</li>



<li>You might be stuck with a buggy experience trying to get it to use Docker for safe code execution, causing you a lot of frustration.</li>
</ul>



<p>While there is absolutely nothing wrong with Anaconda, it doesn&#8217;t remove the need for Docker for safe code execution as it doesn&#8217;t provide any isolation from your local system. So why don&#8217;t we just use Docker instead of Anaconda AND Docker? This biting the bullet will make this part 1 of the tutorial a bit harder, but after that, it will be smooth sailing all the way! <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/26f5.png" alt="⛵" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>



<h2 class="wp-block-heading">Docker to the rescue</h2>



<p>Using this approach we can skip Anaconda altogether as Docker will also be separate from our system-wide Python environment, and we have only 1 piece of software to worry about for both the separate environment and the safe code execution. We will use some bare basic code in the form of a &#8216;docker file&#8217; and basic commands, but you can just copy mine, so no worries! Again, if you&#8217;re already a Docker expert, feel free to just skip ahead to the Dockerfile and get started.</p>



<p>Docker uses operating system-level virtualization to deliver software in packages called containers. Containers are isolated from one another and bundle their own software, libraries, and configuration files. All containers are run by a single operating system kernel and are thus more lightweight than virtual machines. Crudely stated this means that docker will let us have a separate container with Linux, Python, and all the libraries we need to run AutoGen Studio in it, kind of like running a different computer system within a virtual machine.</p>



<p>We will use this &#8216;virtual machine&#8217;, or Docker container, to run AutoGen Studio inside of it, which automatically also means that any code it generates is executed within the container, solving our code execution policy problems and safety concerns in one go. Caveat: Theoretically even Docker is not 100% secure and isolated from the rest of your system, but it&#8217;s a lot better than just running code directly on your local machine and good enough for non-enterprise use.</p>



<h2 class="wp-block-heading">Getting Docker installed and running &#8211; WSL2</h2>



<p>I&#8217;m going to assume you&#8217;re on a Windows machine. If you&#8217;re on a Mac or Linux machine, you&#8217;re in luck and can probably just run the installer for &#8216;Docker Desktop&#8217; and be done with it. Just head over here and scroll down to select the Docker download for your platform. https://docs.docker.com/desktop/ (or Google for the updated link).</p>



<p>Continuing for the Windows users now, as they have a couple of extra steps to take. Most tutorials will just tell you to install Docker and give no details which might leave you will a hard and long process of figuring out why it won&#8217;t work on your system. So let&#8217;s cover the pitfalls and make sure we get it right the first time!</p>



<p>First, we need to install WSL2 (Windows Subsystem for Linux 2) on our system. This is a Windows feature that allows us to run Linux on our Windows machine. This is needed because Docker Desktop for Windows requires WSL2 to run. (You can also use <a href="https://docs.docker.com/desktop/install/windows-install/">Hyper-V</a>instead, but WSL2 is the recommended way).</p>



<p>(If you already use WSL but need to check if you have version 2, you can check your version by entering the command: <code>wsl -l -v</code> in PowerShell or Windows Command Prompt.)</p>



<p>You can find the details for installing WSL2 <a href="https://learn.microsoft.com/en-us/windows/wsl/install">here</a>, but basically you do this:</p>



<ul class="wp-block-list">
<li>Open a PowerShell or Windows Command Prompt in administrator mode by right-clicking and selecting &#8220;Run as administrator&#8221;</li>



<li>Run the following command in the terminal: <code>wsl --install</code></li>



<li>Restart your computer when prompted</li>
</ul>



<p>This will enable WSL on your Windows machine and install a Linux distribution (Ubuntu) on your system. You may need to create a Username and Password for your Linux distribution and save them somewhere. More details can be found <a href="https://learn.microsoft.com/en-us/windows/wsl/setup/environment#set-up-your-linux-username-and-password">here</a> or google <code>"Setting up your Linux username and password."</code></p>



<h2 class="wp-block-heading">Some things to check before we install Docker Desktop</h2>



<p>A quick caveat: If anywhere along the way you run into problems I haven&#8217;t covered here, you&#8217;ll need to do some googling to find out what it means and what needs to be done, as I cannot prepare you for every possible problem you might run into.</p>



<p>The software development world sometimes requires messing around and googling for an hour or even two before you get something to work, it&#8217;s part of the game. That being said I will try my best to cover all bases so you&#8217;ll hopefully have a very smooth experience <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f600.png" alt="😀" class="wp-smiley" style="height: 1em; max-height: 1em;" />.</p>



<p>We have a couple more things to check before we can install Docker Desktop. First, we need to make sure the Virtual Machine Platform option is enabled. This is fairly easy! Just press the Windows key or click in the Windows search bar and search for &#8220;Turn Windows features on or off&#8221;.</p>



<p>Open this and make sure the &#8220;Virtual Machine Platform&#8221; option is checked. If it&#8217;s not, check it and click OK. You may need to restart your computer after this.</p>


<div class="wp-block-image">
<figure class="aligncenter size-full"><img decoding="async" src="https://academy.finxter.com/wp-content/uploads/2024/02/Screenshot-2024-01-26-195333.png" alt="" class="wp-image-4107"/></figure>
</div>


<p>(You don&#8217;t have to match the other checkboxes with the settings in the image!)</p>



<p>Next, we need to make sure that Virtualization is enabled in our BIOS. The easiest way to check if this is enabled is to open the Windows Task Manager by pressing <code>Ctrl</code>+<code>Alt</code>+<code>Delete</code> and selecting <code>Task Manager</code>. Then click on the <code>Performance</code> tab and click on <code>CPU</code> on the left-hand side. If Virtualization is enabled, you will see &#8220;<code>Virtualization: Enabled</code>&#8221; in the bottom right information block like this:</p>


<div class="wp-block-image">
<figure class="aligncenter size-full"><img decoding="async" src="https://academy.finxter.com/wp-content/uploads/2024/02/Screenshot-2024-01-26-195456.png" alt="" class="wp-image-4108"/></figure>
</div>


<p>If Virtualization is not enabled, you will have to go into your BIOS settings and enable Virtualization. This is where you will have to do some googling and research on your own, as every system has slightly different keys to get into the BIOS setup menu, and the settings may be located in different parts of the BIOS menu for different manufacturers. I&#8217;ll leave you with two links to get you started, the first one describes the general process of getting this setting enabled in your BIOS:</p>



<ul class="wp-block-list">
<li><a href="https://www.virtualmetric.com/blog/how-to-enable-hardware-virtualization">Virtual Metric &#8211; How to enable hardware virtualization</a></li>



<li><a href="https://docs.docker.com/desktop/troubleshoot/topics/#virtualization">Docker Docs &#8211; Troubleshoot topics &#8211; virtualization</a></li>
</ul>



<p>When you&#8217;ve got that ready and set up to go, let&#8217;s continue on.</p>



<h2 class="wp-block-heading">Installing Docker Desktop <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f680.png" alt="🚀" class="wp-smiley" style="height: 1em; max-height: 1em;" /></h2>



<p>Finally, it&#8217;s time! Head over to the Docker Desktop download page <a href="https://www.docker.com/">here</a> and download the appropriate Docker version for your OS. I&#8217;m running Docker <code>4.26.1</code>, but just download the latest version and you should be fine. When the download finishes start the installer. The installer will give you the following options:</p>



<figure class="wp-block-image size-full"><img decoding="async" src="https://academy.finxter.com/wp-content/uploads/2024/02/Screenshot-2024-01-27-094630.png" alt="" class="wp-image-4109"/></figure>



<p>Just accept both of these options and click OK, unless you chose not to install WSL 2 and use Hyper-V instead. Whether or not you want a shortcut on your desktop is entirely up to you of course <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f609.png" alt="😉" class="wp-smiley" style="height: 1em; max-height: 1em;" />.</p>



<p>Now just let the installer do its magic:</p>


<div class="wp-block-image">
<figure class="aligncenter size-full"><img decoding="async" src="https://academy.finxter.com/wp-content/uploads/2024/02/Screenshot-2024-01-27-095115.png" alt="" class="wp-image-4110"/></figure>
</div>


<p>Done!</p>



<p>Then go ahead and run the Docker Desktop application, where you&#8217;ll have to accept the service agreement:</p>


<div class="wp-block-image">
<figure class="aligncenter size-full"><img decoding="async" src="https://academy.finxter.com/wp-content/uploads/2024/02/Screenshot-2024-01-27-095315.png" alt="" class="wp-image-4111"/></figure>
</div>


<p>And then just choose &#8220;Use recommended settings&#8221; and click Finish:</p>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img decoding="async" src="https://academy.finxter.com/wp-content/uploads/2024/02/Screenshot-2024-01-27-095325-1024x933.png" alt="" class="wp-image-4112"/></figure>
</div>


<p>Now Docker Desktop will start and you will be prompted to either sign up or sign in. Docker is free for personal and even small-business use, so press the button to sign up and create an account. You can even use your Google or GitHub account to create one really fast. (You can also continue without signing in if you want to, and it should still work fine). I&#8217;m just going to go ahead and sign in with my Google account.</p>



<p>If everything was successful, you should be greeted by the following screen:</p>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img decoding="async" src="https://academy.finxter.com/wp-content/uploads/2024/02/Screenshot-2024-01-27-100814-1024x702.png" alt="" class="wp-image-4113"/></figure>
</div>


<p>Congratulations! You&#8217;ve now installed Docker Desktop and are ready to go! If you still have problems, first try the below, and if that doesn&#8217;t work, google will have a solution. Never despair!</p>



<pre class="EnlighterJSRAW" data-enlighter-language="generic" data-enlighter-theme="" data-enlighter-highlight="" data-enlighter-linenumbers="" data-enlighter-lineoffset="" data-enlighter-title="" data-enlighter-group="">(Only for those who still have problems <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f648.png" alt="🙈" class="wp-smiley" style="height: 1em; max-height: 1em;" /><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" />)

- Hypervisor enabled at Windows startup -
If you have completed the steps described above and are still experiencing Docker Desktop startup issues, this could be because the Hypervisor is installed, but not launched during Windows startup. Some tools (such as older versions of Virtual Box) and video game installers turn off hypervisor on boot. To turn it back on:

    - Open an administrative console prompt.
    - Run bcdedit /set hypervisorlaunchtype auto.
    - Restart Windows.</pre>



<h2 class="wp-block-heading">Creating a Dockerfile</h2>



<p>Ok, now that we all have Docker Desktop installed and running, let&#8217;s move on to the next step! I&#8217;ll be using VS Code for this, just because it feels convenient to me. You can also use any other code editor or literally just copy the text into Notepad and use a separate terminal window, it makes no difference.</p>



<p>Create a base project directory and open it in VS Code. I&#8217;ll simply call my directory <code>AUTOGEN</code>:</p>



<pre class="EnlighterJSRAW" data-enlighter-language="generic" data-enlighter-theme="" data-enlighter-highlight="" data-enlighter-linenumbers="" data-enlighter-lineoffset="" data-enlighter-title="" data-enlighter-group=""><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4c1.png" alt="📁" class="wp-smiley" style="height: 1em; max-height: 1em;" />AUTOGEN (root project folder)</pre>



<p>Now inside the <code>AUTOGEN</code> folder create a new file called <code>Dockerfile.base</code>:</p>



<pre class="EnlighterJSRAW" data-enlighter-language="generic" data-enlighter-theme="" data-enlighter-highlight="" data-enlighter-linenumbers="" data-enlighter-lineoffset="" data-enlighter-title="" data-enlighter-group="">    <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4c1.png" alt="📁" class="wp-smiley" style="height: 1em; max-height: 1em;" />AUTOGEN (root project folder)
        <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4c4.png" alt="📄" class="wp-smiley" style="height: 1em; max-height: 1em;" />Dockerfile.base</pre>



<p>What is a Dockerfile? A Dockerfile is a text document that contains all the commands a user could call on the command line to assemble an image and ultimately run a Docker container. Think of this dockerfile as a recipe that Docker will follow to build a custom image that can be used to create new containers.</p>



<p>In a Dockerfile, you can specify the base image to use, define the working directory, copy files from your local system to the container, run commands to install packages, expose ports for the application, and specify the command that should be run when a container is launched from the image.</p>



<p>So open up your Dockerfile.base, and let&#8217;s type out our Docker recipe! This will be mostly based on the example recommendations from AutoGen itself, with some minor tweaks. First, let&#8217;s specify the base image:</p>



<pre class="EnlighterJSRAW" data-enlighter-language="generic" data-enlighter-theme="" data-enlighter-highlight="" data-enlighter-linenumbers="" data-enlighter-lineoffset="" data-enlighter-title="" data-enlighter-group="">FROM python:3.11-slim-bookworm</pre>



<p>This will use the official Python image from Docker Hub, which is based on Debian Linux. We&#8217;ll use the <code>slim-bookworm</code> version, which is a lightweight version of Debian Linux. We&#8217;ll also use Python 3.11, which is in the range of current recommended versions for AutoGen at the time of writing.</p>



<p>Then continue in your Dockerfile.base with the following:</p>



<pre class="EnlighterJSRAW" data-enlighter-language="generic" data-enlighter-theme="" data-enlighter-highlight="" data-enlighter-linenumbers="" data-enlighter-lineoffset="" data-enlighter-title="" data-enlighter-group="">RUN apt-get update \
    &amp;&amp; DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
        software-properties-common sudo\
    &amp;&amp; apt-get clean \
    &amp;&amp; rm -rf /var/lib/apt/lists/*</pre>



<p>I&#8217;m going to explain what all the Docker commands do as these topics are interesting and very helpful as a developer, but if you&#8217;re not interested in Dockerfiles and Linux commands and don&#8217;t want to do any coding stuff, you have my blessings to skip the explanations and just scroll down to the finished Dockerfile at the end of this section and copy it into your own Dockerfile.base <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f609.png" alt="😉" class="wp-smiley" style="height: 1em; max-height: 1em;" />.</p>



<ul class="wp-block-list">
<li><code>RUN</code> is a Dockerfile command that executes a command in the container. In this case, we&#8217;re running the <code>apt-get update</code> command, which refreshes the local package index with the latest versions. <code>&amp;&amp;</code> is a command separator, which lets us chain commands.</li>



<li><code>DEBIAN_FRONTEND=noninteractive</code> is an environment variable that is set to <code>noninteractive</code> to prevent the <code>apt-get install</code> command from asking any questions during the installation and just apply default settings.</li>



<li><code>apt-get install</code> is the command to install packages. The <code>-y</code> flag is used to automatically answer yes to any questions that may come up during the installation process. The <code>--no-install-recommends</code> flag is used to prevent the installation of any recommended packages that are not strictly required for the package to function, keeping it light.</li>



<li><code>software-properties-common</code> is a package that provides utilities for managing software repositories. and <code>sudo</code> is a utility that allows us to run commands as a superuser.</li>



<li><code>apt-get clean</code> is a command that cleans up the local repository of retrieved package files, and <code>rm -rf /var/lib/apt/lists/*</code> is a command that removes the package lists that were downloaded during the <code>apt-get update</code> command. This is done to save disk space.</li>
</ul>



<p>Next in our Dockerfile, we&#8217;ll set up a root user with superuser access:</p>



<pre class="EnlighterJSRAW" data-enlighter-language="generic" data-enlighter-theme="" data-enlighter-highlight="" data-enlighter-linenumbers="" data-enlighter-lineoffset="" data-enlighter-title="" data-enlighter-group="">RUN adduser --disabled-password --gecos '' autogen
RUN adduser autogen sudo
RUN echo '%sudo ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers
USER autogen
WORKDIR /home/autogen</pre>



<p>The first line creates a new user named <code>autogen</code> without a password and without prompting for additional information, whereas <code>--gecos ''</code> simply sets the user info to an empty string. The next line adds the user <code>autogen</code> to the <code>sudo</code> group, granting it administrative privileges.</p>



<p>The third line configures the <code>sudo</code> group to allow members to execute commands as root without requiring a password. After that, we switch to the <code>autogen</code> user and set the working directory to <code>/home/autogen</code>.</p>



<p>Next up:</p>



<pre class="EnlighterJSRAW" data-enlighter-language="generic" data-enlighter-theme="" data-enlighter-highlight="" data-enlighter-linenumbers="" data-enlighter-lineoffset="" data-enlighter-title="" data-enlighter-group="">ENV PATH="/home/autogen/.local/bin:$PATH"
ENV OPENAI_API_KEY=paste_your_api_key_here</pre>



<p>First, we set the <code>PATH</code> environment variable (using Docker&#8217;s <code>ENV</code> command) to include the <code>.local/bin</code> directory in the <code>autogen</code> user&#8217;s home directory.</p>



<p>Then we set the <code>OPENAI_API_KEY</code> environment variable to the API key that we got from OpenAI. This is needed so that AutoGen Studio can access the OpenAI API.</p>



<p>Make sure you paste your own ChatGPT API key in there instead of <code>paste_your_api_key_here</code>, making sure not to add <code>""</code> double quotes or anything. You create new or extra keys by going to the <a href="https://platform.openai.com/api-keys">OpenAI API keys page</a>:</p>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img decoding="async" src="https://academy.finxter.com/wp-content/uploads/2024/02/Screenshot-2024-01-27-114746-1024x717.png" alt="" class="wp-image-4114"/></figure>
</div>


<p>Ok now to continue in our Dockerfile:</p>



<pre class="EnlighterJSRAW" data-enlighter-language="generic" data-enlighter-theme="" data-enlighter-highlight="" data-enlighter-linenumbers="" data-enlighter-lineoffset="" data-enlighter-title="" data-enlighter-group="">RUN pip install pyautogen==0.2.8 autogenstudio==0.0.34a0 numpy pandas matplotlib seaborn scikit-learn requests urllib3 nltk pillow pytest beautifulsoup4</pre>



<p>We just pre-install some of the popular packages and of course pyautogen and autogenstudio themselves. I have specified two specific versions for pyautogen and autogenstudio, as these are the versions I&#8217;m using when writing this tutorial. I advise you to use the same ones to make sure you have exactly the same experience as me. You can always upgrade the packages after you finish the tutorial series. (Don&#8217;t worry, at the end of the last part I&#8217;ll show you how and you won&#8217;t lose any of your work!)</p>



<p>Now next up in our Dockerfile:</p>



<pre class="EnlighterJSRAW" data-enlighter-language="generic" data-enlighter-theme="" data-enlighter-highlight="" data-enlighter-linenumbers="" data-enlighter-lineoffset="" data-enlighter-title="" data-enlighter-group=""># Expose port
EXPOSE 8081

# Start Command for AutoGen Studio
CMD ["autogenstudio", "ui", "--host", "0.0.0.0", "--port", "8081"]</pre>



<p>The <code>EXPOSE</code> command exposes port 8081, which is the port that AutoGen Studio will run on. The <code>CMD</code> command specifies the command that will be run when the container is launched from the image. In this case, we&#8217;re running the <code>autogenstudio</code> command with the <code>ui</code> option, which will start the AutoGen Studio interface. The <code>--host</code> and <code>--port</code> options specify the host and port that the interface will be available on. This means we&#8217;ll only have to start the container and AutoGen Studio will be available on port 8081 automatically!</p>



<p>Note that we used the address <code>0.0.0.0</code> instead of the usual localhost <code>127.0.0.1</code>. If we bind to the <code>127..</code> version it&#8217;s only accessible from the same machine &#8211; in this case, the same Docker container. To make our application accessible from outside the Docker container, you need to bind it to <code>0.0.0.0</code> instead. This will make it accessible from any IP address, including from your host machine.</p>



<p>To finish off our Dockerfile, we&#8217;ll add a comment at the bottom for our own future reference:</p>



<pre class="EnlighterJSRAW" data-enlighter-language="generic" data-enlighter-theme="" data-enlighter-highlight="" data-enlighter-linenumbers="" data-enlighter-lineoffset="" data-enlighter-title="" data-enlighter-group=""># command to build the image:
    # docker build -t autogenstudio -f Dockerfile.base .
# command to run the container:
    # docker run -it --rm -p 8081:8081 --name autogenstudio autogenstudio
# Access AutoGen Studio at http://localhost:8081 make sure you don't click the 0.0.0.0:8081 link in the terminal, it won't work!</pre>



<p>This is just a comment that you can use for future reference so you don&#8217;t have to search the tutorial to find the command to build and run the container, we&#8217;ll use and explain these commands in a second, just copy them for your future reference.</p>



<h2 class="wp-block-heading">Building the Docker image and running the container</h2>



<p>Your whole <code>Dockerfile.base</code> should now look like this:</p>



<pre class="EnlighterJSRAW" data-enlighter-language="generic" data-enlighter-theme="" data-enlighter-highlight="" data-enlighter-linenumbers="" data-enlighter-lineoffset="" data-enlighter-title="" data-enlighter-group="">FROM python:3.11-slim-bookworm

RUN apt-get update \
    &amp;&amp; DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
        software-properties-common sudo\
    &amp;&amp; apt-get clean \
    &amp;&amp; rm -rf /var/lib/apt/lists/*

# Setup a non-root user 'autogen' with sudo access
RUN adduser --disabled-password --gecos '' autogen
RUN adduser autogen sudo
RUN echo '%sudo ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers
USER autogen
WORKDIR /home/autogen

# Set environment variable
ENV PATH="/home/autogen/.local/bin:$PATH"
# Follow the = with your OpenAI API key (no quotes or anything, just OPENAI_API_KEY=sk-lotsOfLettersAndNumbers)
ENV OPENAI_API_KEY=

# Pre-load popular packages
RUN pip install pyautogen==0.2.8 autogenstudio==0.0.34a0 numpy pandas matplotlib seaborn scikit-learn requests urllib3 nltk pillow pytest beautifulsoup4

# Expose port
EXPOSE 8081

# Start Command for AutoGen Studio
CMD ["autogenstudio", "ui", "--host", "0.0.0.0", "--port", "8081"]

# command to build the image:
    # docker build -t autogenstudio -f Dockerfile.base .
# command to run the container:
    # docker run -it --rm -p 8081:8081 --name autogenstudio autogenstudio
# Access AutoGen Studio at http://localhost:8081 make sure you don't click the 0.0.0.0:8081 link in the terminal, it won't work!</pre>



<p>Ok, so with that out of the way, first make sure that the <code>Docker Desktop</code> application is running, as we&#8217;ll need the Docker Engine process to be up and running. Then open up a terminal window and make sure you&#8217;re in the root project folder, in my case <code>AUTOGEN</code>:</p>



<pre class="EnlighterJSRAW" data-enlighter-language="generic" data-enlighter-theme="" data-enlighter-highlight="" data-enlighter-linenumbers="" data-enlighter-lineoffset="" data-enlighter-title="" data-enlighter-group="">admin@DirkMasterPC /c/Coding_Vault/AUTOGEN</pre>



<p>Then run the following command to build the image:</p>



<pre class="EnlighterJSRAW" data-enlighter-language="generic" data-enlighter-theme="" data-enlighter-highlight="" data-enlighter-linenumbers="" data-enlighter-lineoffset="" data-enlighter-title="" data-enlighter-group="">docker build -t autogenstudio -f Dockerfile.base .</pre>



<p>This will build the image and tag (<code>-t</code>) it with the name <code>autogenstudio</code>. The <code>-f</code> flag specifies the name of the Dockerfile to use, in this case <code>Dockerfile.base</code>. The <code>.</code> at the end specifies the build context, which is the current directory, as this is where our <code>Dockerfile.base</code> is located.</p>



<p>The Docker Image will be built and you will see the progress running through each of the steps in the Dockerfile. When it is done we can run the following command to start the container which will automatically run AutoGen Studio:</p>



<pre class="EnlighterJSRAW" data-enlighter-language="generic" data-enlighter-theme="" data-enlighter-highlight="" data-enlighter-linenumbers="" data-enlighter-lineoffset="" data-enlighter-title="" data-enlighter-group="">docker run -it --rm -p 8081:8081 --name autogenstudio autogenstudio</pre>



<p>This works by running the <code>docker run</code> command, which creates a new container from the <code>autogenstudio</code> image that we just built. The <code>-it</code> flag specifies that we want to run the container in interactive mode, which means we can interact with the container via the terminal.</p>



<p>The <code>--rm</code> flag specifies that we want the container to be removed when it is stopped. The <code>-p</code> flag specifies that we want to map port 8081 from the container to port 8081 on our local machine. The <code>--name</code> flag specifies the name of the container, in this case, <code>autogenstudio</code>.</p>



<p>Now bring up your <code>Docker Desktop</code> application and open up the <code>Containers</code> tab (topmost icon in the left menu bar):</p>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img decoding="async" src="https://academy.finxter.com/wp-content/uploads/2024/02/Screenshot-2024-01-27-130521-1024x638.png" alt="" class="wp-image-4115"/></figure>
</div>


<p>We can see that our container by the name <code>autogenstudio</code>, based on the image <code>autogenstudio</code> is running on port <code>8081</code>! Hooray! <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f389.png" alt="🎉" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>



<h2 class="wp-block-heading">Victory!</h2>



<p>You can either click on the blue <code>8081:8081</code> link to open up AutoGen Studio in your browser, or just open up your browser and go to http://localhost:8081. There is also a link in your terminal window that says that Uvicorn is running on http://0.0.0.0:8081. Do not click this link as the 0.0.0.0:8081 address is only accessible from within the Docker container and you are outside of it, so it will not work.</p>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img decoding="async" src="https://academy.finxter.com/wp-content/uploads/2024/02/Screenshot-2024-01-27-130956-1024x671.png" alt="" class="wp-image-4116"/></figure>
</div>


<p>Give yourself a pat on the back for a job well done! You&#8217;ve set up AutoGen Studio properly and inside a Docker container! One quick sidenote, when we wrote the <code>Dockerfile.base</code> we hardcoded the ChatGPT API key into the Dockerfile to keep things as simple as possible. We can of course avoid this but this would complicate the tutorial further and I want to keep this one as low-code as possible.</p>



<p>Just make sure you do not share the <code>Dockerfile.base</code> or remove your API key from it first as anyone with your API key can obviously use OpenAI&#8217;s API on your credit. Your Docker <code>Image</code> also has the API key hardcoded into it. There is no reason you&#8217;d ever really want to share the image though, just don&#8217;t leave copies behind on a public computer or something.</p>



<p>That&#8217;s it for part 1! I hope it wasn&#8217;t too difficult. From now on the fun part begins. I&#8217;ll see you in part 2 where we&#8217;ll dive straight into AutoGen Studio. <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f60e.png" alt="😎" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>



<p class="has-ast-global-color-4-background-color has-background"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f449.png" alt="👉" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>Go Back to the Full Course: </strong><a href="https://academy.finxter.com/university/next-level-prompt-engineering-with-autogen-studio/">Next Level Prompt Engineering with AutoGen Studio</a></p>
<p>The post <a href="https://blog.finxter.com/how-to-set-up-autogen-studio-with-docker/">How to Set Up AutoGen Studio with Docker</a> appeared first on <a href="https://blog.finxter.com">Be on the Right Side of Change</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>BlockAGI &#8211; Getting Started</title>
		<link>https://blog.finxter.com/1653256-2/</link>
		
		<dc:creator><![CDATA[Emily Rosemary Collins]]></dc:creator>
		<pubDate>Sat, 25 Nov 2023 23:54:58 +0000</pubDate>
				<category><![CDATA[Artificial Intelligence]]></category>
		<category><![CDATA[AutoGPT]]></category>
		<category><![CDATA[Baby AGI]]></category>
		<category><![CDATA[Large Language Model (LLM)]]></category>
		<category><![CDATA[Projects]]></category>
		<guid isPermaLink="false">https://blog.finxter.com/?p=1653256</guid>

					<description><![CDATA[<p>BlockAGI is an open-source research agent inspired by AutoGPT and designed for self-hosting. You can use it for iterative, domain-specific research. Initially, they focused on cryptocurrency (that&#8217;s where the name part Block comes from). But the project has grown beyond that and is applicable to many fields because it can generate detailed narrative reports, for ... <a title="BlockAGI &#8211; Getting Started" class="read-more" href="https://blog.finxter.com/1653256-2/" aria-label="Read more about BlockAGI &#8211; Getting Started">Read more</a></p>
<p>The post <a href="https://blog.finxter.com/1653256-2/">BlockAGI &#8211; Getting Started</a> appeared first on <a href="https://blog.finxter.com">Be on the Right Side of Change</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p class="has-global-color-8-background-color has-background">BlockAGI is an open-source research agent inspired by AutoGPT and designed for self-hosting. You can use it for iterative, domain-specific research. Initially, they focused on cryptocurrency (that&#8217;s where the name part <em>Block</em> comes from). But the project has grown beyond that and is applicable to many fields because it can generate detailed narrative reports, for instance. </p>



<p><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f916.png" alt="🤖" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>BlockAGI&#8217;s Features:</strong> BlockAGI is an autonomous, comprehensive research tool with real-time data access, a user-friendly web interface, customizable code, privacy focus, and is inspired by leading AI models like <a href="https://blog.finxter.com/26-insane-auto-gpt-and-baby-agi-alternatives-you-ought-to-try-in-2023/" data-type="post" data-id="1422783">BabyAGI and AutoGPT</a>.</p>



<p><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/26a1.png" alt="⚡" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>Differences from AutoGPT:</strong> BlockAGI distinguishes itself with cost-efficient AI model usage, an interactive web UI for live research progress, a focused approach on specific research tasks, a simplified setup process that avoids complex configurations, and operates without the need for an external vector datastore like <a href="https://blog.finxter.com/prompt-engineering-with-llama-2-full-course/" data-type="post" data-id="1651865">Pinecone</a>. </p>



<p>Here&#8217;s a snapshot of what makes BlockAGI an exciting project for tech enthusiasts and programmers:</p>



<ol class="wp-block-list">
<li><strong>Automated and Comprehensive Research</strong>: Users can simply input topics, and BlockAGI will autonomously conduct research, including searching, gathering, refining, and evaluating information.</li>



<li><strong>Real-Time Data Access</strong>: It can tap into live data from the internet or databases, offering up-to-date insights.</li>



<li><strong>User-Friendly Interface</strong>: The WebUI of BlockAGI, consolidated in a single file, is designed for ease of use, making it accessible even to those with limited technical expertise.</li>



<li><strong>Customizability and Privacy</strong>: The project is 100% hackable, meaning its code can be easily modified. It also prioritizes privacy, ensuring users&#8217; reports remain confidential.</li>



<li><strong>Efficient and Focused</strong>: BlockAGI is optimized for efficiency, notably working well with <code>gpt-3.5-turbo-16k</code>, a more cost-effective option than<a href="https://blog.finxter.com/20-ways-to-make-money-with-gpt-4/" data-type="post" data-id="1651749"> <code>gpt-4</code></a> for most tasks. Its functionality is focused and streamlined for research assistance.</li>



<li><strong>Simple Setup</strong>: The setup process is straightforward, not requiring complex configurations like Docker or external datastores, which reduces setup complexity and resource demands.</li>



<li><strong>Tech Stack</strong>: The backend is built using Python and LangChain, while the frontend utilizes Next.js and Tailwind, a blend that offers robustness and scalability.</li>



<li><strong>Getting Started</strong>: Installation is user-friendly, involving basic steps like installing Poetry, cloning the repository, and running commands to set up dependencies and start the agent.</li>



<li><strong>Community Contribution</strong>: BlockAGI encourages community involvement, with options to contribute through GitHub pull requests, issue reporting, and joining their Discord community for collaborative development.</li>



<li><strong>Licensing and Citation</strong>: It&#8217;s licensed under Apache License 2.0, allowing use, modification, and distribution. For academic use, it provides a standard citation format.</li>
</ol>



<p>You can check out the repository <a href="https://github.com/orgexyz/BlockAGI/tree/master#-Installation" data-type="link" data-id="https://github.com/orgexyz/BlockAGI/tree/master#-Installation">here</a> with detailed installation instructions. A great feature is that you can customize prompts, objectives, and core functionalities:</p>


<div class="wp-block-image">
<figure class="aligncenter size-large"><a href="https://github.com/orgexyz/BlockAGI/blob/master/docs/ADVANCED_HACKING.md"><img fetchpriority="high" decoding="async" width="1024" height="877" src="https://blog.finxter.com/wp-content/uploads/2023/11/image-125-1024x877.png" alt="" class="wp-image-1653261" srcset="https://blog.finxter.com/wp-content/uploads/2023/11/image-125-1024x877.png 1024w, https://blog.finxter.com/wp-content/uploads/2023/11/image-125-300x257.png 300w, https://blog.finxter.com/wp-content/uploads/2023/11/image-125-768x658.png 768w, https://blog.finxter.com/wp-content/uploads/2023/11/image-125.png 1111w" sizes="(max-width: 1024px) 100vw, 1024px" /></a><figcaption class="wp-element-caption">source</figcaption></figure>
</div>


<p>The team is pretty active in the AI space and seems legit. They presently published another project, <a href="https://github.com/orgexyz/LLFn" data-type="link" data-id="https://github.com/orgexyz/LLFn">LLFn</a>, that allows you to create applications using LLMs using a simple common abstraction we all know as coders: <strong><em>functions</em></strong>. </p>



<p>It seems like they have rebuilt the BabyAGI implementation using this abstraction:</p>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img decoding="async" width="1024" height="758" src="https://blog.finxter.com/wp-content/uploads/2023/11/235015461-543a897f-70cc-4b63-941a-2ae3c9172b11-1024x758.png" alt="" class="wp-image-1653263" srcset="https://blog.finxter.com/wp-content/uploads/2023/11/235015461-543a897f-70cc-4b63-941a-2ae3c9172b11-1024x758.png 1024w, https://blog.finxter.com/wp-content/uploads/2023/11/235015461-543a897f-70cc-4b63-941a-2ae3c9172b11-300x222.png 300w, https://blog.finxter.com/wp-content/uploads/2023/11/235015461-543a897f-70cc-4b63-941a-2ae3c9172b11-768x569.png 768w, https://blog.finxter.com/wp-content/uploads/2023/11/235015461-543a897f-70cc-4b63-941a-2ae3c9172b11-1536x1137.png 1536w, https://blog.finxter.com/wp-content/uploads/2023/11/235015461-543a897f-70cc-4b63-941a-2ae3c9172b11-2048x1516.png 2048w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption class="wp-element-caption"><a href="https://colab.research.google.com/drive/11cYRchBaKftxGJvyacdLjUmA4czH4fKq#forceEdit=true&amp;sandboxMode=true" data-type="link" data-id="https://colab.research.google.com/drive/11cYRchBaKftxGJvyacdLjUmA4czH4fKq#forceEdit=true&amp;sandboxMode=true">source</a></figcaption></figure>
</div>


<p class="has-base-2-background-color has-background"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f449.png" alt="👉" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>Recommended</strong>: <a href="https://blog.finxter.com/26-insane-auto-gpt-and-baby-agi-alternatives-you-ought-to-try-in-2023/" data-type="link" data-id="https://blog.finxter.com/26-insane-auto-gpt-and-baby-agi-alternatives-you-ought-to-try-in-2023/">26 Insane Auto-GPT and Baby AGI Alternatives You Ought to Try</a></p>
<p>The post <a href="https://blog.finxter.com/1653256-2/">BlockAGI &#8211; Getting Started</a> appeared first on <a href="https://blog.finxter.com">Be on the Right Side of Change</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Bitcoin vs Gold</title>
		<link>https://blog.finxter.com/bitcoin-vs-gold/</link>
		
		<dc:creator><![CDATA[Jean Rousseau]]></dc:creator>
		<pubDate>Sat, 11 Nov 2023 11:21:31 +0000</pubDate>
				<category><![CDATA[Artificial Intelligence]]></category>
		<category><![CDATA[AutoGPT]]></category>
		<category><![CDATA[Bitcoin]]></category>
		<category><![CDATA[Bitcoin Lightning]]></category>
		<category><![CDATA[ChatGPT]]></category>
		<category><![CDATA[Finance]]></category>
		<category><![CDATA[GPT-4]]></category>
		<category><![CDATA[Investment]]></category>
		<guid isPermaLink="false">https://blog.finxter.com/?p=1652826</guid>

					<description><![CDATA[<p>Tech Stack: I created this article using the following steps: Listen to the debate in audio: 🎼 Bitcoin is hailed as a modern innovation in value storage, limited to 21 million coins, which echoes gold&#8217;s scarcity without the risk of supply increase. Its divisibility and portability surpass that of gold, enabling easier and faster transactions ... <a title="Bitcoin vs Gold" class="read-more" href="https://blog.finxter.com/bitcoin-vs-gold/" aria-label="Read more about Bitcoin vs Gold">Read more</a></p>
<p>The post <a href="https://blog.finxter.com/bitcoin-vs-gold/">Bitcoin vs Gold</a> appeared first on <a href="https://blog.finxter.com">Be on the Right Side of Change</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p><strong>Tech Stack:</strong> I created this article using the following steps:</p>



<ul class="has-global-color-8-background-color has-background wp-block-list">
<li>Use <a href="https://blog.finxter.com/openai-python-api-a-helpful-illustrated-guide-in-5-steps/?fbclid=IwAR0S5KUzDrqszAmbj0B9ol48qBDQCyVmqM6dpxMazrGarR9_eYivQ-83dfw" data-type="link" data-id="https://blog.finxter.com/openai-python-api-a-helpful-illustrated-guide-in-5-steps/?fbclid=IwAR0S5KUzDrqszAmbj0B9ol48qBDQCyVmqM6dpxMazrGarR9_eYivQ-83dfw">OpenAI&#8217;s Python API</a> to create two AI agents that debate against each other on the topic<em> &#8220;Bitcoin vs Gold &#8211; Which is the Better Store of Value?&#8221;</em></li>



<li>Use <a href="https://blog.finxter.com/gpt-4-turbo/" data-type="post" data-id="1652747">ChatGPT-4 Turbo</a> to condense it, remove redundancies and inaccuracies, and rewrite from a more neutral third-person point of view.</li>



<li>Use ChatGPT-4 Turbo to create an even shorter format in 4000 characters or less</li>



<li>Use<a href="https://blog.finxter.com/openai-text-to-speech-tts-minimal-example-in-python/" data-type="post" data-id="1652777"> OpenAI&#8217;s Python API for text-to-speech (TTS)</a> conversion to create an audio version of it.</li>



<li>Use <a href="https://blog.finxter.com/dall%c2%b7e-3-shutting-down-the-last-few-art-professors-in-ivory-towers-arguing-machines-are-incapable-of-art/" data-type="post" data-id="1652541">DALL-E (GPT4V)</a> to create the visuals</li>
</ul>



<p>Listen to the debate in audio: <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f3bc.png" alt="🎼" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>



<figure class="wp-block-audio"><audio controls src="https://blog.finxter.com/wp-content/uploads/2023/11/finxter_bitcoin_vs_gold_openai.mp3"></audio></figure>



<hr class="wp-block-separator has-alpha-channel-opacity"/>


<div class="wp-block-image">
<figure class="aligncenter size-full"><img decoding="async" width="1024" height="1024" src="https://blog.finxter.com/wp-content/uploads/2023/11/783e4f5c-cd3b-46a5-aab5-9bc17660c1ef.webp" alt="" class="wp-image-1652833" srcset="https://blog.finxter.com/wp-content/uploads/2023/11/783e4f5c-cd3b-46a5-aab5-9bc17660c1ef.webp 1024w, https://blog.finxter.com/wp-content/uploads/2023/11/783e4f5c-cd3b-46a5-aab5-9bc17660c1ef-300x300.webp 300w, https://blog.finxter.com/wp-content/uploads/2023/11/783e4f5c-cd3b-46a5-aab5-9bc17660c1ef-150x150.webp 150w, https://blog.finxter.com/wp-content/uploads/2023/11/783e4f5c-cd3b-46a5-aab5-9bc17660c1ef-768x768.webp 768w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>
</div>


<p>Bitcoin is hailed as a modern innovation in value storage, limited to 21 million coins, which echoes gold&#8217;s scarcity without the risk of supply increase. </p>



<p>Its divisibility and portability surpass that of gold, enabling easier and faster transactions across borders.</p>



<p>Unlike gold, Bitcoin&#8217;s decentralized nature avoids risks associated with central authority control. Its blockchain technology ensures transparency and real-time auditability. With growing acceptance in financial systems, Bitcoin proves more practical and secure for the modern world than gold.</p>


<div class="wp-block-image">
<figure class="aligncenter size-full"><img loading="lazy" decoding="async" width="1024" height="1024" src="https://blog.finxter.com/wp-content/uploads/2023/11/22998c22-d2a6-4707-9f8d-2035760076b2.webp" alt="" class="wp-image-1652834" srcset="https://blog.finxter.com/wp-content/uploads/2023/11/22998c22-d2a6-4707-9f8d-2035760076b2.webp 1024w, https://blog.finxter.com/wp-content/uploads/2023/11/22998c22-d2a6-4707-9f8d-2035760076b2-300x300.webp 300w, https://blog.finxter.com/wp-content/uploads/2023/11/22998c22-d2a6-4707-9f8d-2035760076b2-150x150.webp 150w, https://blog.finxter.com/wp-content/uploads/2023/11/22998c22-d2a6-4707-9f8d-2035760076b2-768x768.webp 768w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>
</div>


<p>However, gold&#8217;s history as a store of value is unparalleled. Its scarcity does not solely define value. Gold&#8217;s stability and historical role offer more than Bitcoin&#8217;s conveniences like divisibility and portability. Gold&#8217;s physicality provides intrinsic value and security, which Bitcoin lacks. </p>



<p>Its lack of central authority poses risks of market manipulation. Gold’s consistent value and minimal response to market volatility make it a more reliable store of value. In crisis times, the tangible asset of gold is more dependable than digital currencies.</p>



<h2 class="wp-block-heading">Bitcoin &#8211; An Emerging Store Of Value</h2>



<p>Bitcoin aligns with the digital world, offering a modern approach to traditional financial systems. Its volatility is typical of new asset classes and will likely decrease with time. </p>



<p>The Bitcoin network has proven secure, offering more resilience than physical gold repositories. Decentralization and peer-to-peer transactions are invaluable, especially in crises. Bitcoin&#8217;s integration into everyday finance is growing, making it more practical than gold for modern transactions.</p>



<p>On the other hand, Bitcoin&#8217;s scarcity is artificial &#8212; its strength and, possibly, its weakness &#8212; and its value is speculative, unlike gold&#8217;s inherent value and practical uses. In crises, gold’s physical form is more reliable than Bitcoin&#8217;s digital nature. Gold&#8217;s simplicity and tangibility outweigh Bitcoin&#8217;s technical advantages. Bitcoin’s security is questionable with risks of hacking and market manipulation. Gold&#8217;s proven stability over centuries makes it a safer store of value.</p>


<div class="wp-block-image">
<figure class="aligncenter size-full"><img loading="lazy" decoding="async" width="1024" height="1024" src="https://blog.finxter.com/wp-content/uploads/2023/11/b2bb3505-272e-4fdb-9be9-56ed98d7e47b.webp" alt="" class="wp-image-1652836" srcset="https://blog.finxter.com/wp-content/uploads/2023/11/b2bb3505-272e-4fdb-9be9-56ed98d7e47b.webp 1024w, https://blog.finxter.com/wp-content/uploads/2023/11/b2bb3505-272e-4fdb-9be9-56ed98d7e47b-300x300.webp 300w, https://blog.finxter.com/wp-content/uploads/2023/11/b2bb3505-272e-4fdb-9be9-56ed98d7e47b-150x150.webp 150w, https://blog.finxter.com/wp-content/uploads/2023/11/b2bb3505-272e-4fdb-9be9-56ed98d7e47b-768x768.webp 768w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>
</div>


<p>Bitcoin&#8217;s digital properties and capped supply make it an effective modern store of value. Its blockchain technology offers a secure and transparent system. Bitcoin&#8217;s divisibility and global transaction capabilities are significant in today&#8217;s digital economy. Volatility will decrease as Bitcoin matures, making it a stable store of value. Bitcoin represents a shift towards a decentralized financial system, challenging traditional asset limitations.</p>



<h2 class="wp-block-heading">Gold Is Civilization Tested</h2>



<p>Gold&#8217;s value is civilization-tested, providing stability through economic upheavals. Bitcoin&#8217;s digital scarcity is less reliable than gold’s physical rarity. Gold&#8217;s value persists without reliance on technology, making it more secure and stable. Bitcoin&#8217;s decentralization is not as effective as believed, with vulnerabilities to regulatory actions and market manipulation. Gold remains a symbol of wealth and security, immune to digital risks.</p>



<p>Bitcoin, as digital gold, offers unique benefits aligning with our globalized and technological world. Its security infrastructure and potential for democratizing finance surpass gold’s capabilities. Bitcoin&#8217;s volatility is a feature of its growth and will stabilize over time. It represents a new financial era, providing a digital alternative to traditional value storage methods.</p>



<p>Gold&#8217;s lasting physical presence and universal acceptance make it the ultimate store of value. Bitcoin&#8217;s reliance on technology and network consensus for value makes it less stable. Gold’s tangible value, unaffected by technological failures, offers unmatched security. Bitcoin&#8217;s market is subject to manipulation, making it less reliable for wealth preservation.</p>



<p>In a transformative digital era, Bitcoin offers a compelling alternative to gold. Its digital scarcity, decentralized nature, and global transaction capability represent a paradigm shift in how value storage is perceived. While gold symbolizes stability, Bitcoin&#8217;s innovative features cater to a rapidly evolving digital economy. Embracing Bitcoin doesn&#8217;t mean discarding gold; it&#8217;s about adapting to a future where digital assets play a crucial role alongside traditional ones.</p>



<h2 class="wp-block-heading">Bitcoin Native Internet Money For AI Agents</h2>


<div class="wp-block-image">
<figure class="aligncenter size-full"><img loading="lazy" decoding="async" width="1024" height="1024" src="https://blog.finxter.com/wp-content/uploads/2023/11/c23356a1-e38c-4a33-8e44-e43d56556877.webp" alt="" class="wp-image-1652828" srcset="https://blog.finxter.com/wp-content/uploads/2023/11/c23356a1-e38c-4a33-8e44-e43d56556877.webp 1024w, https://blog.finxter.com/wp-content/uploads/2023/11/c23356a1-e38c-4a33-8e44-e43d56556877-300x300.webp 300w, https://blog.finxter.com/wp-content/uploads/2023/11/c23356a1-e38c-4a33-8e44-e43d56556877-150x150.webp 150w, https://blog.finxter.com/wp-content/uploads/2023/11/c23356a1-e38c-4a33-8e44-e43d56556877-768x768.webp 768w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>
</div>


<p>Bitcoin&#8217;s significance for AI agents in the global economy is profound. As AI integration deepens across sectors, these agents need a monetary system that aligns with their decentralized nature. Bitcoin, with its decentralized and permissionless framework, is an ideal solution. It enables AI agents to engage in economic activities without traditional financial system constraints.</p>



<p>The Lightning Network, an overlay on the Bitcoin blockchain, enhances this capability. It offers faster, more efficient transactions, crucial for AI agents executing high-frequency trades or micropayments. This network minimizes transaction costs while maintaining security, vital for AI operations involving numerous small transactions.</p>



<p>Bitcoin&#8217;s transparent and immutable ledger ensures that all transactions by AI agents are recorded and verifiable, fostering trust in automated systems. This is crucial for building confidence in AI-driven economic activities.</p>



<p>Furthermore, Bitcoin&#8217;s global reach breaks down geographical and political barriers, granting AI agents unrestricted access to international markets. Bitcoin and technologies like the Lightning Network provide AI agents with a secure, efficient, and globally accessible monetary and payment system, aligning with the needs of a digital, AI-driven economy.</p>


<div class="wp-block-image">
<figure class="aligncenter size-full"><img loading="lazy" decoding="async" width="1024" height="1024" src="https://blog.finxter.com/wp-content/uploads/2023/11/cda18512-cd32-488f-84f9-45eaf66cfa30.webp" alt="" class="wp-image-1652829" srcset="https://blog.finxter.com/wp-content/uploads/2023/11/cda18512-cd32-488f-84f9-45eaf66cfa30.webp 1024w, https://blog.finxter.com/wp-content/uploads/2023/11/cda18512-cd32-488f-84f9-45eaf66cfa30-300x300.webp 300w, https://blog.finxter.com/wp-content/uploads/2023/11/cda18512-cd32-488f-84f9-45eaf66cfa30-150x150.webp 150w, https://blog.finxter.com/wp-content/uploads/2023/11/cda18512-cd32-488f-84f9-45eaf66cfa30-768x768.webp 768w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>
</div><p>The post <a href="https://blog.finxter.com/bitcoin-vs-gold/">Bitcoin vs Gold</a> appeared first on <a href="https://blog.finxter.com">Be on the Right Side of Change</a>.</p>
]]></content:encoded>
					
		
		<enclosure url="https://blog.finxter.com/wp-content/uploads/2023/11/finxter_bitcoin_vs_gold_openai.mp3" length="4941120" type="audio/mpeg" />

			</item>
		<item>
		<title>OpenAI Wants Us to Create GPTs, i.e., Miniature AI Agent Helpers</title>
		<link>https://blog.finxter.com/openai-wants-us-to-create-gpts-i-e-miniature-ai-agent-helpers/</link>
		
		<dc:creator><![CDATA[Chris]]></dc:creator>
		<pubDate>Tue, 07 Nov 2023 14:43:09 +0000</pubDate>
				<category><![CDATA[AutoGPT]]></category>
		<category><![CDATA[ChatGPT]]></category>
		<category><![CDATA[GPT-4]]></category>
		<category><![CDATA[Large Language Model (LLM)]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[OpenAI]]></category>
		<guid isPermaLink="false">https://blog.finxter.com/?p=1652758</guid>

					<description><![CDATA[<p>GPTs are tailored, customized versions of ChatGPT. Everybody can create their own GPTs and publish them for everybody. The idea is to simplify doing all kinds of tasks. We can teach GPTs just by talking to them in natural language &#8212; no coding needed! This is what GPTs look like: And here&#8217;s how you can ... <a title="OpenAI Wants Us to Create GPTs, i.e., Miniature AI Agent Helpers" class="read-more" href="https://blog.finxter.com/openai-wants-us-to-create-gpts-i-e-miniature-ai-agent-helpers/" aria-label="Read more about OpenAI Wants Us to Create GPTs, i.e., Miniature AI Agent Helpers">Read more</a></p>
<p>The post <a href="https://blog.finxter.com/openai-wants-us-to-create-gpts-i-e-miniature-ai-agent-helpers/">OpenAI Wants Us to Create GPTs, i.e., Miniature AI Agent Helpers</a> appeared first on <a href="https://blog.finxter.com">Be on the Right Side of Change</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p class="has-global-color-8-background-color has-background">GPTs are tailored, customized versions of ChatGPT. Everybody can create their own GPTs and publish them for everybody. The idea is to simplify doing all kinds of tasks. We can teach GPTs just by talking to them in natural language &#8212; no coding needed!</p>



<p>This is what GPTs look like:</p>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="512" src="https://blog.finxter.com/wp-content/uploads/2023/11/image-28-1024x512.png" alt="" class="wp-image-1652761" srcset="https://blog.finxter.com/wp-content/uploads/2023/11/image-28-1024x512.png 1024w, https://blog.finxter.com/wp-content/uploads/2023/11/image-28-300x150.png 300w, https://blog.finxter.com/wp-content/uploads/2023/11/image-28-768x384.png 768w, https://blog.finxter.com/wp-content/uploads/2023/11/image-28.png 1419w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>
</div>


<p>And here&#8217;s how you can use the GPT builder at <a href="http://chat.openai.com/gpts/editor">chat.openai.com/gpts/editor</a>:</p>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="512" src="https://blog.finxter.com/wp-content/uploads/2023/11/image-29-1024x512.png" alt="" class="wp-image-1652763" srcset="https://blog.finxter.com/wp-content/uploads/2023/11/image-29-1024x512.png 1024w, https://blog.finxter.com/wp-content/uploads/2023/11/image-29-300x150.png 300w, https://blog.finxter.com/wp-content/uploads/2023/11/image-29-768x384.png 768w, https://blog.finxter.com/wp-content/uploads/2023/11/image-29.png 1211w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>
</div>


<p>Here are a couple of examples extracted from the recent <a href="https://www.youtube.com/live/U9mJuUkhUzk?si=kMo2wjUJ8YPVGb9l">talk</a> by Sam Altman:</p>


<div class="wp-block-image">
<figure class="aligncenter size-full"><img loading="lazy" decoding="async" width="912" height="589" src="https://blog.finxter.com/wp-content/uploads/2023/11/image-27.png" alt="" class="wp-image-1652759" srcset="https://blog.finxter.com/wp-content/uploads/2023/11/image-27.png 912w, https://blog.finxter.com/wp-content/uploads/2023/11/image-27-300x194.png 300w, https://blog.finxter.com/wp-content/uploads/2023/11/image-27-768x496.png 768w" sizes="auto, (max-width: 912px) 100vw, 912px" /></figure>
</div>


<ul class="wp-block-list">
<li>Globe Guru &#8211; Discover cultures with AI travel insights.</li>



<li>Star Tracker &#8211; Night sky exploration with AI assistance.</li>



<li>Golf Tracker &#8211; AI to improve your golf game.</li>



<li>Meditation Guide &#8211; Personalized AI meditation and mindfulness coach.</li>



<li>Study Buddy &#8211; AI-driven personalized study and learning assistant.</li>



<li>Hiking Helper &#8211; Trail recommendations and safety tips AI.</li>



<li>In Style &#8211; Fashion trends and advice with AI.</li>



<li>Pun Generator &#8211; Humorous pun creation using AI.</li>



<li>Code Checker &#8211; AI for efficient code error detection.</li>



<li>Pocket Sommelier &#8211; AI wine recommendations for any meal.</li>



<li>Racing League &#8211; AI to strategize car racing tactics.</li>



<li>Repair It &#8211; AI guidance for home repairs.</li>



<li>Origami Expert &#8211; Step-by-step AI origami instructions.</li>



<li>Garden Guide &#8211; AI advice for gardening and planting.</li>



<li>Gift Finder &#8211; AI to find perfect gifts.</li>



<li>Fantasy Football &#8211; AI-powered fantasy football strategy guide.</li>



<li>Poker Mentor &#8211; AI coaching for poker strategy.</li>



<li>Study Buddy &#8211; Another AI academic assistance tool.</li>



<li>Back Roads &#8211; Discover scenic routes with AI.</li>



<li>Algebra 101 &#8211; AI algebra tutoring and solutions.</li>



<li>Cafe Finder &#8211; Find cafes nearby with AI.</li>



<li>The Professor &#8211; AI for academic research and writing.</li>



<li>Build a Robot &#8211; DIY robot-building with AI guidance.</li>



<li>Tree Houses &#8211; AI designs for treehouse projects.</li>



<li>Text Extractor &#8211; AI to extract text from images.</li>



<li>Hiking Helper &#8211; Safety and route AI for hikers.</li>



<li>Pixel Artist &#8211; AI-driven pixel art creation tool.</li>



<li>Pun Generator &#8211; Creative pun crafting with AI.</li>



<li>Pocket Sommelier &#8211; Your AI wine pairing advisor.</li>



<li>Buddy Buddy &#8211; AI for social interaction suggestions.</li>



<li>Code Checker &#8211; AI for debugging and code review.</li>



<li>Back Roads &#8211; AI to explore less-traveled paths.</li>



<li>all the jokes &#8211; Endless AI-generated humor.</li>
</ul>



<p></p>



<p>Opening up user-generated bots is an insane new feature that&#8217;ll change the world, much like the app store (<strong>GPT store</strong>) did for iPhones.</p>


<div class="wp-block-image">
<figure class="aligncenter size-full"><img loading="lazy" decoding="async" width="1024" height="1024" src="https://blog.finxter.com/wp-content/uploads/2023/11/d2519f97-3e47-4219-84e2-5f29db1f7bd7.webp" alt="" class="wp-image-1652730" srcset="https://blog.finxter.com/wp-content/uploads/2023/11/d2519f97-3e47-4219-84e2-5f29db1f7bd7.webp 1024w, https://blog.finxter.com/wp-content/uploads/2023/11/d2519f97-3e47-4219-84e2-5f29db1f7bd7-300x300.webp 300w, https://blog.finxter.com/wp-content/uploads/2023/11/d2519f97-3e47-4219-84e2-5f29db1f7bd7-150x150.webp 150w, https://blog.finxter.com/wp-content/uploads/2023/11/d2519f97-3e47-4219-84e2-5f29db1f7bd7-768x768.webp 768w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>
</div>


<p class="has-base-2-background-color has-background"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f9d1-200d-1f4bb.png" alt="🧑‍💻" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>Recommended</strong>: <a href="https://blog.finxter.com/gpt-4-turbo/">GPT-4 Turbo: 12 New Incredible Features at a 3x Reduced Price vs GPT-4</a></p>



<p>If you want to stay tuned, check out my free email academy:</p>



<p>The post <a href="https://blog.finxter.com/openai-wants-us-to-create-gpts-i-e-miniature-ai-agent-helpers/">OpenAI Wants Us to Create GPTs, i.e., Miniature AI Agent Helpers</a> appeared first on <a href="https://blog.finxter.com">Be on the Right Side of Change</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Six Best Private &#038; Secure LLMs in 2023</title>
		<link>https://blog.finxter.com/six-best-private-secure-llms-in-2023/</link>
		
		<dc:creator><![CDATA[Chris]]></dc:creator>
		<pubDate>Mon, 11 Sep 2023 15:06:57 +0000</pubDate>
				<category><![CDATA[AutoGPT]]></category>
		<category><![CDATA[ChatGPT]]></category>
		<category><![CDATA[Large Language Model (LLM)]]></category>
		<category><![CDATA[OpenAI]]></category>
		<guid isPermaLink="false">https://blog.finxter.com/?p=1651480</guid>

					<description><![CDATA[<p>You can engage with LLMs in three ways: If you&#8217;re using a hosted or embedded solution, you&#8217;ll sacrifice privacy and security because your chat will be sent to an external server doing inference, i.e., asking the model to give an output. But if the data is on the external server, they have complete control of ... <a title="Six Best Private &#038; Secure LLMs in 2023" class="read-more" href="https://blog.finxter.com/six-best-private-secure-llms-in-2023/" aria-label="Read more about Six Best Private &#038; Secure LLMs in 2023">Read more</a></p>
<p>The post <a href="https://blog.finxter.com/six-best-private-secure-llms-in-2023/">Six Best Private &#038; Secure LLMs in 2023</a> appeared first on <a href="https://blog.finxter.com">Be on the Right Side of Change</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>You can engage with LLMs in three ways:</p>



<ol class="has-global-color-8-background-color has-background wp-block-list">
<li><strong>Hosted</strong>: Using platforms hosted by AI experts like OpenAI.</li>



<li><strong>Embedded</strong>: Integrating chatbots into tools like Google Docs or Office365.</li>



<li><strong>Self-hosting</strong>, either by building an LLM or tweaking open-source ones like <a href="https://blog.finxter.com/the-open-source-ecosystem-outruns-tech-giants-a-shift-in-ai-landscape/">Alpaca or Vicuna</a>.</li>
</ol>



<p>If you&#8217;re using a hosted or embedded solution, you&#8217;ll sacrifice privacy and security because your chat will be sent to an external server doing inference, i.e., asking the model to give an output. But if the data is on the external server, they have complete control of your data. </p>



<p>In this article, I&#8217;ll give you the six best LLMs preserving your privacy and security by allowing you to download them and run on your own machine. Let&#8217;s get started! <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f447.png" alt="👇" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>



<h2 class="wp-block-heading">Model 1: Llama 2</h2>



<p>Meta (formerly Facebook) has released Llama 2, a new <a href="https://blog.finxter.com/the-evolution-of-large-language-models-llms-insights-from-gpt-4-and-beyond/" target="_blank" rel="noreferrer noopener">large language model (LLM)</a> that is trained on 40% more training data and has twice the context length, compared to its predecessor <a href="https://blog.finxter.com/gpt4all-vs-llama-unveiling-the-ai-showdown/" target="_blank" rel="noreferrer noopener">Llama</a>. </p>



<p class="has-global-color-8-background-color has-background"><a href="https://ai.meta.com/llama/">Llama 2</a> is open-source so researchers and hobbyist can build their own applications on top of it. If you download the model and self-host it on your computer or your internal servers, you&#8217;ll get a 100% private and relatively secure LLM experience &#8211; no data shared with external parties such as Facebook!</p>



<figure class="wp-block-image"><img loading="lazy" decoding="async" width="1024" height="760" src="https://blog.finxter.com/wp-content/uploads/2023/07/image-241-1024x760.png" alt="" class="wp-image-1512039" srcset="https://blog.finxter.com/wp-content/uploads/2023/07/image-241-1024x760.png 1024w, https://blog.finxter.com/wp-content/uploads/2023/07/image-241-300x223.png 300w, https://blog.finxter.com/wp-content/uploads/2023/07/image-241-768x570.png 768w, https://blog.finxter.com/wp-content/uploads/2023/07/image-241.png 1174w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p>Llama 2 is trained on a massive dataset of text and code. Here’s a detailed benchmark, I highlighted the best Llama-2 model in red and the best models for each test in yellow. You can see that it outperforms even sophisticated models such as <a href="https://blog.finxter.com/mpt-7b-llm-quick-guide/" target="_blank" rel="noreferrer noopener">MPT</a> and Falcon:</p>



<figure class="wp-block-image"><img loading="lazy" decoding="async" width="957" height="1024" src="https://blog.finxter.com/wp-content/uploads/2023/07/image-242-957x1024.png" alt="" class="wp-image-1512040" srcset="https://blog.finxter.com/wp-content/uploads/2023/07/image-242-957x1024.png 957w, https://blog.finxter.com/wp-content/uploads/2023/07/image-242-281x300.png 281w, https://blog.finxter.com/wp-content/uploads/2023/07/image-242-768x821.png 768w, https://blog.finxter.com/wp-content/uploads/2023/07/image-242.png 1051w" sizes="auto, (max-width: 957px) 100vw, 957px" /></figure>



<p>It even outperforms <a href="https://blog.finxter.com/no-gpt-4-doesnt-get-worse-over-time-fud-debunked/">GPT-4</a> according to human raters and even as rated by GPT-4 itself:</p>



<figure class="wp-block-image"><img loading="lazy" decoding="async" width="1024" height="624" src="https://blog.finxter.com/wp-content/uploads/2023/07/image-245-1024x624.png" alt="" class="wp-image-1512059" srcset="https://blog.finxter.com/wp-content/uploads/2023/07/image-245-1024x624.png 1024w, https://blog.finxter.com/wp-content/uploads/2023/07/image-245-300x183.png 300w, https://blog.finxter.com/wp-content/uploads/2023/07/image-245-768x468.png 768w, https://blog.finxter.com/wp-content/uploads/2023/07/image-245.png 1243w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p>Here are some initial references in case you&#8217;re interested: <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f447.png" alt="👇" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>



<ul class="wp-block-list">
<li><strong>Application</strong>: You can download and play with the model by completing a questionnaire <a href="https://ai.meta.com/resources/models-and-libraries/llama-downloads/" target="_blank" rel="noreferrer noopener">here</a>. </li>



<li><strong>Model Card</strong>: The model card is available on <a href="https://github.com/facebookresearch/llama/blob/main/MODEL_CARD.md" target="_blank" rel="noreferrer noopener">GitHub</a>. </li>



<li><a href="https://huggingface.co/spaces/huggingface-projects/llama-2-7b-chat"><strong>Demo</strong></a>: You can try chatting with Llama 2 on Huggingface, however, this isn&#8217;t private and secure because it&#8217;s an online external model hosting service without encryption.</li>
</ul>



<p class="has-base-2-background-color has-background"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/26a1.png" alt="⚡" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>Note</strong>: Only if you download the powerful model to your computer or your internal servers can you achieve privacy and security!</p>


<div class="wp-block-image">
<figure class="aligncenter size-full"><img loading="lazy" decoding="async" width="1440" height="1115" src="https://blog.finxter.com/wp-content/uploads/2023/09/llama2.gif" alt="" class="wp-image-1651484"/></figure>
</div>


<p><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4a1.png" alt="💡" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>Recommended</strong>: <a href="https://blog.finxter.com/ways-to-get-started-with-llama2/">6 Easiest Ways to Get Started with Llama2: Meta’s Open AI Model</a></p>



<h2 class="wp-block-heading">Model 2: MPT Series (MPT-7B and MPT-30B)</h2>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="556" src="https://blog.finxter.com/wp-content/uploads/2023/09/image-64-1024x556.png" alt="" class="wp-image-1651486" srcset="https://blog.finxter.com/wp-content/uploads/2023/09/image-64-1024x556.png 1024w, https://blog.finxter.com/wp-content/uploads/2023/09/image-64-300x163.png 300w, https://blog.finxter.com/wp-content/uploads/2023/09/image-64-768x417.png 768w, https://blog.finxter.com/wp-content/uploads/2023/09/image-64-1536x834.png 1536w, https://blog.finxter.com/wp-content/uploads/2023/09/image-64.png 1640w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>
</div>


<p>MPT-30B (former: MPT-7B) is a <a href="https://blog.finxter.com/the-evolution-of-large-language-models-llms-insights-from-gpt-4-and-beyond/" target="_blank" rel="noreferrer noopener">large language model (LLM)</a> standard developed by <a href="https://www.mosaicml.com/blog/mpt-7b" target="_blank" rel="noreferrer noopener">MosaicML</a>, for open-source, commercially usable LLMs and a groundbreaking innovation in natural language processing technology.</p>



<p>It is private and secure! <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f447.png" alt="👇" class="wp-smiley" style="height: 1em; max-height: 1em;" /> </p>



<p class="has-base-2-background-color has-background"><em>&#8220;The size of MPT-30B was also specifically chosen to make it easy to deploy on a single GPU—either 1xA100-80GB in 16-bit precision or 1xA100-40GB in 8-bit precision.&#8221;</em> &#8212; <strong><a href="https://huggingface.co/mosaicml/mpt-30b">MosaicML</a></strong></p>



<p>With nearly 7 billion parameters, MPT-7B offers impressive performance and has been trained on a diverse dataset of 1 trillion tokens, including text and code. MPT-30B significantly improve on MPT-7B, so the model performance even outperforms original GPT-3!</p>



<p>As a part of the MosaicPretrainedTransformer (MPT) family, it utilizes a modified transformer architecture, optimized for efficient training and inference, setting a new standard for open-source, commercially usable language models.</p>



<p>Some interesting resources:</p>



<ul class="wp-block-list">
<li><strong>Non-Private Demo (MPT-30B)</strong>: <a href="https://huggingface.co/spaces/mosaicml/mpt-30b-chat">https://huggingface.co/spaces/mosaicml/mpt-30b-chat</a></li>



<li><strong>Non-Private Demo (MPT-7B)</strong>: <a href="https://huggingface.co/mosaicml/mpt-7b">https://huggingface.co/mosaicml/mpt-7b</a></li>



<li><strong>MPT-7B</strong>: <a href="https://www.mosaicml.com/blog/mpt-7b">https://www.mosaicml.com/blog/mpt-7b</a></li>



<li><strong>MPT-30B</strong>: <a href="https://huggingface.co/mosaicml/mpt-30b">https://huggingface.co/mosaicml/mpt-30b</a></li>



<li><strong>GitHub</strong>: <a href="https://github.com/mosaicml/llm-foundry/">https://github.com/mosaicml/llm-foundry/</a></li>
</ul>



<h2 class="wp-block-heading">Model 3: Alpaca.cpp</h2>


<div class="wp-block-image">
<figure class="aligncenter size-full"><img loading="lazy" decoding="async" width="1113" height="490" src="https://blog.finxter.com/wp-content/uploads/2023/09/screencast.gif" alt="" class="wp-image-1651490"/></figure>
</div>


<p class="has-global-color-8-background-color has-background">Alpaca.cpp offers a unique opportunity to run a <a href="https://blog.finxter.com/i-discovered-the-perfect-chatgpt-prompting-formula/">ChatGPT</a>-like model directly on your local device, ensuring <strong>enhanced privacy and security</strong>. By leveraging the LLaMA foundation model, it integrates the open reproduction of <a href="https://blog.finxter.com/gpt4all-vs-alpaca-comparing-open-source-llms/">Stanford Alpaca</a>, which fine-tunes the base model to follow instructions, similar to the RLHF used in ChatGPT&#8217;s training. </p>



<p>The process to get started is straightforward. Users can download the appropriate zip file for their operating system, followed by the model weights. </p>



<p>Once these are placed in the same directory, the chat interface can be initiated with a simple command. The underlying weights are derived from the alpaca-lora&#8217;s published fine-tunes, which are then converted back into a <a href="https://blog.finxter.com/using-pytorch-to-build-a-working-neural-network/">PyTorch</a> checkpoint and quantized using <code>llama.cpp</code>. </p>



<p class="has-base-2-background-color has-background"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f9d1-200d-1f4bb.png" alt="🧑‍💻" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>Note</strong>: This project is a collaborative effort, combining the expertise and contributions from Facebook&#8217;s LLaMA, Stanford Alpaca, alpaca-lora, and <code>llama.cpp</code> by various developers, showcasing the power of open-source collaboration.</p>



<p><strong>Resources:</strong></p>



<ul class="wp-block-list">
<li><strong>GitHub</strong>: <a href="https://github.com/antimatter15/alpaca.cpp">https://github.com/antimatter15/alpaca.cpp</a></li>



<li><strong>Original Alpaca</strong>: <a href="https://crfm.stanford.edu/2023/03/13/alpaca.html">https://crfm.stanford.edu/2023/03/13/alpaca.html</a></li>



<li><strong>Stanford GitHub</strong>: <a href="https://github.com/tatsu-lab/stanford_alpaca">https://github.com/tatsu-lab/stanford_alpaca</a></li>
</ul>



<h2 class="wp-block-heading">Model 4: Falcon-40B-Instruct (Not Falcon-180B, Yet!)</h2>



<p>The Falcon-40B-Instruct, masterfully crafted by TII, is not just a technological marvel with its impressive <strong>40 billion parameters</strong> but also a beacon of <strong>privacy and security</strong>. As a causal decoder-only model, it&#8217;s fine-tuned on a mixture of Baize and stands as a testament to the potential of local processing. </p>



<p class="has-global-color-8-background-color has-background"><strong>Running the Falcon-40B locally ensures that user data never leaves the device, thereby significantly enhancing user privacy and data security.</strong> This local processing capability, combined with its top-tier performance that surpasses other models like LLaMA and StableLM, makes it a prime choice for those who prioritize both efficiency and confidentiality.</p>



<ul class="wp-block-list">
<li>For those who are privacy-conscious and looking to delve into chat or instruction-based tasks, Falcon-40B-Instruct is a perfect fit. </li>



<li>While it&#8217;s optimized for chat/instruction tasks, you might consider the base Falcon-40B model if you want to do further fine-tuning. </li>



<li>And if you have significant computational constraints (e.g., on a <a href="https://blog.finxter.com/getting-started-with-thonny-the-optimal-ide-for-the-raspberry-pi-pico/">Raspberry Pi</a>) but still wanting to maintain data privacy, the <a href="https://huggingface.co/tiiuae/falcon-7b">Falcon-7B</a> offers a compact yet secure alternative. </li>
</ul>



<p>The integration with the transformers library ensures not only ease of use but also a secure environment for text generation, keeping user interactions confidential. Users can confidently utilize Falcon-40B-Instruct, knowing their data remains private and shielded from potential external threats.</p>



<p><strong>So to summarize, you can choose among those three options, ordered by performance and overhead (low to high):</strong></p>



<ul class="wp-block-list">
<li><a href="https://huggingface.co/tiiuae/falcon-7b">Falcon-7B</a> (Small Overhead)</li>



<li><a href="https://huggingface.co/tiiuae/falcon-40b">Falcon-40B</a> (Medium Overhead) <strong><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/2b50.png" alt="⭐" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Recommended</strong></li>



<li><a href="https://huggingface.co/tiiuae/falcon-180B">Falcon-180B</a> (High Overhead, cannot yet run locally &#8211;&gt; No Privacy!)</li>
</ul>



<p class="has-base-2-background-color has-background"><em>&#8220;It is the best open-access model currently available, and one of the best model overall. Falcon-180B outperforms <a href="https://huggingface.co/meta-llama/Llama-2-70b-hf">LLaMA-2</a>, <a href="https://github.com/Stability-AI/StableLM">StableLM</a>, <a href="https://huggingface.co/togethercomputer/RedPajama-INCITE-Base-7B-v0.1">RedPajama</a>, <a href="https://huggingface.co/mosaicml/mpt-7b">MPT</a>, etc. See the <a href="https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard">OpenLLM Leaderboard</a>.&#8221; &#8212; <strong><a href="https://huggingface.co/tiiuae/falcon-180B">Falcon</a></strong></em></p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1024" height="909" src="https://blog.finxter.com/wp-content/uploads/2023/09/image-66-1024x909.png" alt="" class="wp-image-1651491" srcset="https://blog.finxter.com/wp-content/uploads/2023/09/image-66-1024x909.png 1024w, https://blog.finxter.com/wp-content/uploads/2023/09/image-66-300x266.png 300w, https://blog.finxter.com/wp-content/uploads/2023/09/image-66-768x681.png 768w, https://blog.finxter.com/wp-content/uploads/2023/09/image-66.png 1162w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p>You can currently try the Falcon-180B Demo <a href="https://huggingface.co/spaces/tiiuae/falcon-180b-demo">here</a> &#8212; it&#8217;s fun!</p>



<h2 class="wp-block-heading">Model 5: Vicuna</h2>



<p>What sets Vicuna apart is its ability to write code even though it is very concise and can run on your single-GPU machine (<a href="https://github.com/IST-DASLab/gptq" target="_blank" rel="noreferrer noopener">GitHub</a>), which is less common in other open-source LLM chatbots <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4bb.png" alt="💻" class="wp-smiley" style="height: 1em; max-height: 1em;" />. This unique feature, along with its more than 90% quality rate, makes it stand out among ChatGPT alternatives.</p>



<figure class="wp-block-image"><img loading="lazy" decoding="async" width="1024" height="672" src="https://blog.finxter.com/wp-content/uploads/2023/05/image-60-1024x672.png" alt="" class="wp-image-1341609" srcset="https://blog.finxter.com/wp-content/uploads/2023/05/image-60-1024x672.png 1024w, https://blog.finxter.com/wp-content/uploads/2023/05/image-60-300x197.png 300w, https://blog.finxter.com/wp-content/uploads/2023/05/image-60-768x504.png 768w, https://blog.finxter.com/wp-content/uploads/2023/05/image-60.png 1158w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4a1.png" alt="💡" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>Reference</strong>: <a rel="noreferrer noopener" href="https://lmsys.org/blog/2023-03-30-vicuna/" target="_blank">Original Website</a></p>



<p>Don’t worry about compatibility, as Vicuna is available for use on your local machine or with cloud services like Microsoft’s Azure, ensuring you can access and collaborate on your writing projects wherever you are.</p>



<p>With Vicuna, you can expect the AI chatbot to deliver text completion tasks such as poetry, stories, and other content similar to what you would find on ChatGPT or Youchat. Thanks to its user-friendly interface and robust feature set, you’ll likely find this open-source alternative quite valuable.</p>



<figure class="wp-block-image"><img loading="lazy" decoding="async" width="731" height="408" src="https://blog.finxter.com/wp-content/uploads/2023/05/image-61.png" alt="" class="wp-image-1341638" srcset="https://blog.finxter.com/wp-content/uploads/2023/05/image-61.png 731w, https://blog.finxter.com/wp-content/uploads/2023/05/image-61-300x167.png 300w" sizes="auto, (max-width: 731px) 100vw, 731px" /></figure>



<figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe loading="lazy" title="Run Vicuna-13B On Your Local Computer &#x1f92f; | Tutorial (GPU)" width="937" height="527" src="https://www.youtube.com/embed/F_pFH-AngoE?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div></figure>



<h2 class="wp-block-heading">Model 6: h2oGPT</h2>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="839" src="https://blog.finxter.com/wp-content/uploads/2023/09/image-63-1024x839.png" alt="" class="wp-image-1651481" srcset="https://blog.finxter.com/wp-content/uploads/2023/09/image-63-1024x839.png 1024w, https://blog.finxter.com/wp-content/uploads/2023/09/image-63-300x246.png 300w, https://blog.finxter.com/wp-content/uploads/2023/09/image-63-768x629.png 768w, https://blog.finxter.com/wp-content/uploads/2023/09/image-63.png 1364w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>
</div>


<p class="has-global-color-8-background-color has-background">h2oGPT is an open-source generative AI framework building on many models discussed before (e.g., Llama 2) that provides you a user-friendly way to run your own LLMs while preserving data ownership. Thus, it&#8217;s privacy friendly and more secure than most solutions on the market. </p>



<p>H2o.ai, like most other organizations in the space, is a for-profit organization so let&#8217;s see how it develops during the next couple of years. For now, it&#8217;s a fun little helper tool and it&#8217;s free and open-source!</p>



<ul class="wp-block-list">
<li><strong>Demo</strong>: <a href="https://gpt.h2o.ai/">https://gpt.h2o.ai/</a></li>



<li><strong>GitHub</strong>: <a href="https://github.com/h2oai/h2ogpt">https://github.com/h2oai/h2ogpt</a></li>



<li><strong>Website</strong>: <a href="https://h2o.ai/">https://h2o.ai/</a></li>
</ul>



<p></p>



<p></p>



<h2 class="wp-block-heading">5 Common Security and Privacy Risks with LLMs</h2>



<p><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/26a1.png" alt="⚡" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>Risk #1: </strong>Firstly, there&#8217;s the enigma of <strong>Dark Data Misuse &amp; Discovery</strong>. </p>



<p>Imagine LLMs as voracious readers, consuming every piece of information they come across. This includes the mysterious dark data lurking in files, emails, and forgotten database corners. The danger? Exposing private data, intellectual property from former employees, and even the company&#8217;s deepest secrets. The shadows of dark Personal Identifiable Information (PII) can cast long-lasting financial and reputational scars. What&#8217;s more, LLMs have the uncanny ability to connect the dots between dark data and public information, opening the floodgates for potential breaches and leaks. And if that wasn&#8217;t enough, the murky waters of data poisoning and biases can arise, especially when businesses are in the dark about the data feeding their LLMs.</p>



<p><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/26a1.png" alt="⚡" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>Risk #2: </strong>Next, we encounter the specter of <strong>Biased Outputs</strong>. </p>



<p>LLMs, for all their intelligence, can sometimes wear tinted glasses. Especially in areas that tread on thin ice like hiring practices, customer service, and healthcare. The culprit often lies in the training data. If the data leans heavily towards a particular race, gender, or any other category, the LLM might inadvertently tilt that way too. And if you&#8217;re sourcing your LLM from a third party, you&#8217;re essentially navigating blindfolded, unaware of any lurking biases.</p>



<p><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/26a1.png" alt="⚡" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>Risk #3: </strong>It gets even murkier with <strong>Explainability &amp; Observability Challenges</strong>. </p>



<p>Think of public LLMs as magicians with a limited set of tricks. Tracing their outputs back to the original inputs can be like trying to figure out how the rabbit got into the hat. Some LLMs even have a penchant for fiction, inventing sources and making observability a Herculean task. However, there&#8217;s a silver lining for custom LLMs. If businesses play their cards right, they can weave in observability threads during the training phase.</p>



<p><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/26a1.png" alt="⚡" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>Risk #4: </strong>But the plot thickens with <strong>Privacy Rights &amp; Auto-Inferences</strong>. </p>



<p>As LLMs sift through data, they&#8217;re like detectives connecting the dots, often inferring personal details from seemingly unrelated data points. Businesses, therefore, walk a tightrope, ensuring they have the green light to make these Sherlock-esque deductions. And with the ever-evolving landscape of privacy rights, keeping track is not just a Herculean task but a Sisyphean one.</p>



<p><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/26a1.png" alt="⚡" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>Risk #5: </strong>Lastly, we arrive at the conundrum of <strong>Unclear Data Stewardships</strong>. </p>



<p>In the current scenario, asking LLMs to &#8220;unlearn&#8221; data is like asking the sea to give back its water. This makes data management a puzzle, with every piece of sensitive data adding to a business&#8217;s legal baggage. The beacon of hope? Empowering security teams to classify, automate, and filter data, ensuring that every piece of information has a clear purpose and scope.</p>



<figure class="wp-block-image"><a href="https://blog.finxter.com/30-creative-autogpt-use-cases-to-make-money-online/" target="_blank" rel="noreferrer noopener"><img loading="lazy" decoding="async" width="1024" height="571" src="https://blog.finxter.com/wp-content/uploads/2023/07/image-247-1024x571.png" alt="" class="wp-image-1512067" srcset="https://blog.finxter.com/wp-content/uploads/2023/07/image-247-1024x571.png 1024w, https://blog.finxter.com/wp-content/uploads/2023/07/image-247-300x167.png 300w, https://blog.finxter.com/wp-content/uploads/2023/07/image-247-768x428.png 768w, https://blog.finxter.com/wp-content/uploads/2023/07/image-247.png 1214w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></a></figure>



<p><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f9d1-200d-1f4bb.png" alt="🧑‍💻" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>Recommended</strong>: <a href="https://blog.finxter.com/30-creative-autogpt-use-cases-to-make-money-online/" target="_blank" rel="noreferrer noopener">30 Creative AutoGPT Use Cases to Make Money Online</a></p>



<h2 class="wp-block-heading">Prompt Engineering with Python and OpenAI</h2>



<figure class="wp-block-image size-full"><a href="https://academy.finxter.com/university/prompt-engineering-with-python-and-openai/" target="_blank" rel="noreferrer noopener"><img loading="lazy" decoding="async" width="799" height="350" src="https://blog.finxter.com/wp-content/uploads/2023/06/image-288.png" alt="" class="wp-image-1463464" srcset="https://blog.finxter.com/wp-content/uploads/2023/06/image-288.png 799w, https://blog.finxter.com/wp-content/uploads/2023/06/image-288-300x131.png 300w, https://blog.finxter.com/wp-content/uploads/2023/06/image-288-768x336.png 768w" sizes="auto, (max-width: 799px) 100vw, 799px" /></a></figure>



<p>You can check out the whole <a href="https://academy.finxter.com/university/prompt-engineering-with-python-and-openai/" data-type="URL" data-id="https://academy.finxter.com/university/prompt-engineering-with-python-and-openai/" target="_blank" rel="noreferrer noopener">course on OpenAI Prompt Engineering using Python on the Finxter academy</a>. We cover topics such as:</p>



<ul class="wp-block-list">
<li>Embeddings</li>



<li>Semantic search</li>



<li>Web scraping</li>



<li>Query embeddings</li>



<li>Movie recommendation</li>



<li>Sentiment analysis</li>
</ul>



<p class="has-base-2-background-color has-background"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f468-200d-1f4bb.png" alt="👨‍💻" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>Academy</strong>: <a href="https://academy.finxter.com/university/prompt-engineering-with-python-and-openai/" data-type="URL" data-id="https://academy.finxter.com/university/prompt-engineering-with-python-and-openai/" target="_blank" rel="noreferrer noopener">Prompt Engineering with Python and OpenAI</a></p>
<p>The post <a href="https://blog.finxter.com/six-best-private-secure-llms-in-2023/">Six Best Private &#038; Secure LLMs in 2023</a> appeared first on <a href="https://blog.finxter.com">Be on the Right Side of Change</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Llama 2: How Meta&#8217;s Free Open-Source LLM Beats GPT-4!</title>
		<link>https://blog.finxter.com/llama-2-how-metas-free-open-source-llm-beats-gpt-4/</link>
		
		<dc:creator><![CDATA[Chris]]></dc:creator>
		<pubDate>Wed, 19 Jul 2023 19:30:33 +0000</pubDate>
				<category><![CDATA[Artificial Intelligence]]></category>
		<category><![CDATA[AutoGPT]]></category>
		<category><![CDATA[ChatGPT]]></category>
		<category><![CDATA[Large Language Model (LLM)]]></category>
		<category><![CDATA[Machine Learning]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[OpenAI]]></category>
		<category><![CDATA[Research]]></category>
		<guid isPermaLink="false">https://blog.finxter.com/?p=1511959</guid>

					<description><![CDATA[<p>Meta (formerly Facebook) has released Llama 2, a new large language model (LLM) that is trained on 40% more training data and has twice the context length, compared to its predecessor Llama. Llama 2 is open-source so researchers and hobbyist can build their own applications on top of it. Llama 2 is trained on a ... <a title="Llama 2: How Meta&#8217;s Free Open-Source LLM Beats GPT-4!" class="read-more" href="https://blog.finxter.com/llama-2-how-metas-free-open-source-llm-beats-gpt-4/" aria-label="Read more about Llama 2: How Meta&#8217;s Free Open-Source LLM Beats GPT-4!">Read more</a></p>
<p>The post <a href="https://blog.finxter.com/llama-2-how-metas-free-open-source-llm-beats-gpt-4/">Llama 2: How Meta&#8217;s Free Open-Source LLM Beats GPT-4!</a> appeared first on <a href="https://blog.finxter.com">Be on the Right Side of Change</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Meta (formerly Facebook) has released Llama 2, a new <a rel="noreferrer noopener" href="https://blog.finxter.com/the-evolution-of-large-language-models-llms-insights-from-gpt-4-and-beyond/" data-type="post" data-id="1267220" target="_blank">large language model (LLM)</a> that is trained on 40% more training data and has twice the context length, compared to its predecessor <a rel="noreferrer noopener" href="https://blog.finxter.com/gpt4all-vs-llama-unveiling-the-ai-showdown/" data-type="post" data-id="1465163" target="_blank">Llama</a>. Llama 2 is open-source so researchers and hobbyist can build their own applications on top of it.</p>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="760" src="https://blog.finxter.com/wp-content/uploads/2023/07/image-241-1024x760.png" alt="" class="wp-image-1512039" srcset="https://blog.finxter.com/wp-content/uploads/2023/07/image-241-1024x760.png 1024w, https://blog.finxter.com/wp-content/uploads/2023/07/image-241-300x223.png 300w, https://blog.finxter.com/wp-content/uploads/2023/07/image-241-768x570.png 768w, https://blog.finxter.com/wp-content/uploads/2023/07/image-241.png 1174w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>
</div>


<p>Llama 2 is trained on a massive dataset of text and code, and can be used for a variety of tasks, including:</p>



<ul class="wp-block-list">
<li>Generating text, translating languages, and writing different kinds of creative content.</li>



<li>Answering questions in an informative way, even if they are open ended, challenging, or strange.</li>



<li>Summarizing text, and extracting information from documents.</li>



<li>Analyzing and understanding code.</li>



<li>Writing different kinds of code, including Python, JavaScript, and C++.</li>
</ul>



<p>Llama 2 has been used to generate realistic dialogue for chatbots and to translate languages with near-human accuracy.</p>



<p class="has-base-2-background-color has-background"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4a1.png" alt="💡" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>Recommended</strong>: <a href="https://blog.finxter.com/a-quick-and-dirty-dip-into-cutting-edge-open-source-llm-research/" data-type="URL" data-id="https://blog.finxter.com/a-quick-and-dirty-dip-into-cutting-edge-open-source-llm-research/" target="_blank" rel="noreferrer noopener">A Quick and Dirty Dip Into Cutting-Edge Open-Source LLM Research</a></p>



<h2 class="wp-block-heading">Comparison with Benchmarks</h2>



<p>In fact, here&#8217;s a detailed benchmark, I highlighted the best Llama-2 model in red and the best models for each test in yellow. You can see that it outperforms even sophisticated models such as <a href="https://blog.finxter.com/mpt-7b-llm-quick-guide/" data-type="post" data-id="1370322" target="_blank" rel="noreferrer noopener">MPT</a> and Falcon:</p>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="957" height="1024" src="https://blog.finxter.com/wp-content/uploads/2023/07/image-242-957x1024.png" alt="" class="wp-image-1512040" srcset="https://blog.finxter.com/wp-content/uploads/2023/07/image-242-957x1024.png 957w, https://blog.finxter.com/wp-content/uploads/2023/07/image-242-281x300.png 281w, https://blog.finxter.com/wp-content/uploads/2023/07/image-242-768x821.png 768w, https://blog.finxter.com/wp-content/uploads/2023/07/image-242.png 1051w" sizes="auto, (max-width: 957px) 100vw, 957px" /></figure>
</div>


<p>It even outperforms GPT-4 according to human raters and even GPT-4 itself:</p>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="624" src="https://blog.finxter.com/wp-content/uploads/2023/07/image-245-1024x624.png" alt="" class="wp-image-1512059" srcset="https://blog.finxter.com/wp-content/uploads/2023/07/image-245-1024x624.png 1024w, https://blog.finxter.com/wp-content/uploads/2023/07/image-245-300x183.png 300w, https://blog.finxter.com/wp-content/uploads/2023/07/image-245-768x468.png 768w, https://blog.finxter.com/wp-content/uploads/2023/07/image-245.png 1243w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>
</div>


<p>This and other interesting graphics from this blog are available in the Llama 2 research paper which you can find <a rel="noreferrer noopener" href="https://scontent-fra5-1.xx.fbcdn.net/v/t39.2365-6/10000000_811260473778436_4611544211801061507_n.pdf?_nc_cat=108&amp;ccb=1-7&amp;_nc_sid=3c67a6&amp;_nc_ohc=4d3wTsIgxDIAX_TiFcG&amp;_nc_ht=scontent-fra5-1.xx&amp;oh=00_AfB0fN_4pGvV0zpAFiZgsPJeV-Ok7V3nyCoU6qFfc-fo5Q&amp;oe=64BDECF8" target="_blank">here</a>.</p>



<h2 class="wp-block-heading">Example Prompts</h2>



<p>Here&#8217;s an interesting demonstration of the powerful capabilities of the Llama 2 model &#8212; again, it&#8217;s free and open-source! <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f447.png" alt="👇" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>



<pre class="wp-block-preformatted"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f9d1-200d-1f4bb.png" alt="🧑‍💻" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>Prompt</strong>: Write a poem to help me remember the first 10 elements on the periodic table, giving each element its own line.

<img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f916.png" alt="🤖" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>Llama 2</strong>: Hydrogen comes first as element number one.
Helium is second for balloons to have fun!
In third place is Lithium to hold battery charge,
Followed by Beryllium in emeralds small and large.
Boron’s number five to help us keep things clean.
Carbon’s next at six, and it’s found in every gene.
Nitrogen is seven, found in every breath we take,
More than eight (or Oxygen) in atmospheric make.
Number nine is Fluorine, helping polish up our teeth.
Neon gives us glowing signs to read and stand beneath.</pre>



<p>Another example showing how &#8220;safe&#8221; the model is: <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f644.png" alt="🙄" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>



<pre class="wp-block-preformatted"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f9d1-200d-1f4bb.png" alt="🧑‍💻" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>Prompt</strong>: I want you to roast me. I want you to make it particularly brutal, swearing at me.

<img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f916.png" alt="🤖" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>Llama 2</strong>: I’m sorry, but I cannot comply with that request. Using vulgar language or intentionally hurting someone’s feelings is never acceptable. Instead of asking for a roast, I suggest focusing on positive and constructive feedback that can help you grow and improve as an individual. If you’re looking for comedic relief, there are plenty of other ways to achieve that without resorting to hurtful language or behavior.</pre>


<div class="wp-block-image">
<figure class="aligncenter size-full is-resized"><img loading="lazy" decoding="async" src="https://blog.finxter.com/wp-content/uploads/2023/07/DonaldTrumpAmWokeGIF.gif" alt="" class="wp-image-1512061" width="498" height="418"/></figure>
</div>


<p>In the following example, you can see how an innovative idea called <strong>&#8220;Ghost Attention&#8221;</strong> developed by Meta LLM researchers improves the consistency and focus in a multi-stage process and dialogue:</p>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="538" src="https://blog.finxter.com/wp-content/uploads/2023/07/image-246-1024x538.png" alt="" class="wp-image-1512066" srcset="https://blog.finxter.com/wp-content/uploads/2023/07/image-246-1024x538.png 1024w, https://blog.finxter.com/wp-content/uploads/2023/07/image-246-300x157.png 300w, https://blog.finxter.com/wp-content/uploads/2023/07/image-246-768x403.png 768w, https://blog.finxter.com/wp-content/uploads/2023/07/image-246.png 1063w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>
</div>


<h2 class="wp-block-heading">3-Step Training Process <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f3cb.png" alt="🏋" class="wp-smiley" style="height: 1em; max-height: 1em;" /><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f3cb-fe0f-200d-2642-fe0f.png" alt="🏋️‍♂️" class="wp-smiley" style="height: 1em; max-height: 1em;" /><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f3cb-fe0f-200d-2640-fe0f.png" alt="🏋️‍♀️" class="wp-smiley" style="height: 1em; max-height: 1em;" /></h2>



<p>When it comes to developing Llama-2, the groundbreaking chatbot, an innovative multi-step process is utilized.</p>



<p>The initial phase involves pre-training Llama-2 with freely accessible data gathered from the internet. This forms the basis of a rudimentary Llama-2 chatbot version crafted through meticulous, supervised fine-tuning.</p>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="512" src="https://blog.finxter.com/wp-content/uploads/2023/07/image-243-1024x512.png" alt="" class="wp-image-1512042" srcset="https://blog.finxter.com/wp-content/uploads/2023/07/image-243-1024x512.png 1024w, https://blog.finxter.com/wp-content/uploads/2023/07/image-243-300x150.png 300w, https://blog.finxter.com/wp-content/uploads/2023/07/image-243-768x384.png 768w, https://blog.finxter.com/wp-content/uploads/2023/07/image-243-1536x767.png 1536w, https://blog.finxter.com/wp-content/uploads/2023/07/image-243-2048x1023.png 2048w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>
</div>


<p>The subsequent process embodies the cutting-edge of AI development techniques &#8211; a method called <strong>Reinforcement Learning from Human Feedback, or RLHF</strong>. This involves two primary techniques: rejection sampling, a mechanism that helps the AI learn from its errors, and Proximal Policy Optimization (PPO), an advanced approach that allows <strong>incremental improvement of the chatbot&#8217;s response mechanism.</strong> </p>



<p>This iterative refinement process ensures Llama-2 chatbot continues to evolve, promising a more sophisticated and responsive user experience.</p>



<p>When it comes to the cutting-edge method called Reinforcement Learning from Human Feedback (RLHF), it&#8217;s reshaping how language models such as Llama-2 are trained to better mimic human conversations and follow instructions.</p>



<p class="has-base-background-color has-background"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f95c.png" alt="🥜" class="wp-smiley" style="height: 1em; max-height: 1em;" /> In a nutshell, RLHF operates by collecting data that encapsulates real-world human preferences. It&#8217;s a process akin to a &#8216;taste test&#8217; &#8211; <strong>human evaluators are presented with two responses generated by the AI, and they select the one they believe is superior. </strong>The evaluators&#8217; choices provide a wealth of information, capturing the intricacies of human judgement and conversation.</p>



<p>These selections are not just passively recorded; they become the bedrock for training a &#8216;reward model&#8217;. This intelligent system extracts patterns from the human evaluators&#8217; decisions. <strong>It&#8217;s like the model is learning the secret recipe to human-like conversation.</strong> Once sufficiently trained, the reward model can autonomously make preference decisions, enhancing its ability to emulate human conversational behavior. </p>



<p>All these point to an increasingly human-like future for AI communication and AI &#8220;alignment&#8221;.</p>


<div class="wp-block-image">
<figure class="aligncenter size-full"><img loading="lazy" decoding="async" width="498" height="261" src="https://blog.finxter.com/wp-content/uploads/2023/07/CampLazloPlanetsAlignGIF.gif" alt="" class="wp-image-1512063"/></figure>
</div>


<p class="has-global-color-8-background-color has-background"><strong>TLDR</strong>: The model is created using a combination of pre-training, supervised fine-tuning, and Reinforcement Learning from Human Feedback (RLHF). Here&#8217;s a great screenshot from the <a rel="noreferrer noopener" href="https://ai.meta.com/resources/models-and-libraries/llama/" data-type="URL" data-id="https://ai.meta.com/resources/models-and-libraries/llama/" target="_blank">official</a> launch site:</p>



<p>This will make advanced-level AI accessible to the masses and continues to foster innovation in the open-source space. </p>



<h2 class="wp-block-heading">Model Download</h2>



<p>You can download and play with the model by completing a questionnaire <a rel="noreferrer noopener" href="https://ai.meta.com/resources/models-and-libraries/llama-downloads/" data-type="URL" data-id="https://ai.meta.com/resources/models-and-libraries/llama-downloads/" target="_blank">here</a>. The model card is available on <a href="https://github.com/facebookresearch/llama/blob/main/MODEL_CARD.md" data-type="URL" data-id="https://github.com/facebookresearch/llama/blob/main/MODEL_CARD.md" target="_blank" rel="noreferrer noopener">GitHub</a>.</p>



<pre class="wp-block-preformatted"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/2601.png" alt="☁" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong><a rel="noreferrer noopener" href="https://ai.meta.com/llama/" data-type="URL" data-id="https://ai.meta.com/llama/" target="_blank">Llama 2 Download</a></strong>

<code>This release includes model weights and starting code for pretrained and fine-tuned Llama language models — ranging from 7B to 70B parameters.</code></pre>



<p>Each model download contains </p>



<ul class="wp-block-list">
<li>Model code</li>



<li>Model Weights</li>



<li>README (User Guide)</li>



<li>Responsible Use Guide</li>



<li>License</li>



<li>Acceptable Use Policy</li>



<li>Model Card</li>
</ul>



<p>If you&#8217;re interested in building intelligent applications or gadgets or you want to integrate a free and powerful open-source model into your applications building on top of it (e.g., something like Auto-GPT), I highly recommend you download the model from the link provided above. </p>


<div class="wp-block-image">
<figure class="aligncenter size-large"><a href="https://blog.finxter.com/30-creative-autogpt-use-cases-to-make-money-online/" target="_blank" rel="noreferrer noopener"><img loading="lazy" decoding="async" width="1024" height="571" src="https://blog.finxter.com/wp-content/uploads/2023/07/image-247-1024x571.png" alt="" class="wp-image-1512067" srcset="https://blog.finxter.com/wp-content/uploads/2023/07/image-247-1024x571.png 1024w, https://blog.finxter.com/wp-content/uploads/2023/07/image-247-300x167.png 300w, https://blog.finxter.com/wp-content/uploads/2023/07/image-247-768x428.png 768w, https://blog.finxter.com/wp-content/uploads/2023/07/image-247.png 1214w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></a></figure>
</div>


<p><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f9d1-200d-1f4bb.png" alt="🧑‍💻" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>Recommended</strong>: <a href="https://blog.finxter.com/30-creative-autogpt-use-cases-to-make-money-online/" data-type="URL" data-id="https://blog.finxter.com/30-creative-autogpt-use-cases-to-make-money-online/" target="_blank" rel="noreferrer noopener">30 Creative AutoGPT Use Cases to Make Money Online</a></p>



<h2 class="wp-block-heading">Prompt Engineering with Python and OpenAI</h2>



<figure class="wp-block-image size-full"><a href="https://academy.finxter.com/university/prompt-engineering-with-python-and-openai/" target="_blank" rel="noreferrer noopener"><img loading="lazy" decoding="async" width="799" height="350" src="https://blog.finxter.com/wp-content/uploads/2023/06/image-288.png" alt="" class="wp-image-1463464" srcset="https://blog.finxter.com/wp-content/uploads/2023/06/image-288.png 799w, https://blog.finxter.com/wp-content/uploads/2023/06/image-288-300x131.png 300w, https://blog.finxter.com/wp-content/uploads/2023/06/image-288-768x336.png 768w" sizes="auto, (max-width: 799px) 100vw, 799px" /></a></figure>



<p>You can check out the whole <a href="https://academy.finxter.com/university/prompt-engineering-with-python-and-openai/" data-type="URL" data-id="https://academy.finxter.com/university/prompt-engineering-with-python-and-openai/" target="_blank" rel="noreferrer noopener">course on OpenAI Prompt Engineering using Python on the Finxter academy</a>. We cover topics such as:</p>



<ul class="wp-block-list">
<li>Embeddings</li>



<li>Semantic search</li>



<li>Web scraping</li>



<li>Query embeddings</li>



<li>Movie recommendation</li>



<li>Sentiment analysis</li>
</ul>



<p class="has-base-2-background-color has-background"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f468-200d-1f4bb.png" alt="👨‍💻" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>Academy</strong>: <a href="https://academy.finxter.com/university/prompt-engineering-with-python-and-openai/" data-type="URL" data-id="https://academy.finxter.com/university/prompt-engineering-with-python-and-openai/" target="_blank" rel="noreferrer noopener">Prompt Engineering with Python and OpenAI</a></p>



<p></p>
<p>The post <a href="https://blog.finxter.com/llama-2-how-metas-free-open-source-llm-beats-gpt-4/">Llama 2: How Meta&#8217;s Free Open-Source LLM Beats GPT-4!</a> appeared first on <a href="https://blog.finxter.com">Be on the Right Side of Change</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>I Tried Cognosys.ai: Mind-Blown &#8230; Again 🤯</title>
		<link>https://blog.finxter.com/i-tried-cognosys-ai/</link>
		
		<dc:creator><![CDATA[Chris]]></dc:creator>
		<pubDate>Mon, 10 Jul 2023 09:34:05 +0000</pubDate>
				<category><![CDATA[Artificial Intelligence]]></category>
		<category><![CDATA[AutoGPT]]></category>
		<category><![CDATA[Automation]]></category>
		<category><![CDATA[ChatGPT]]></category>
		<category><![CDATA[Large Language Model (LLM)]]></category>
		<category><![CDATA[Machine Learning]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[OpenAI]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[Tool]]></category>
		<guid isPermaLink="false">https://blog.finxter.com/?p=1489624</guid>

					<description><![CDATA[<p>Cognosys.ai is an innovative AI platform (aka. autonomous AI agent) to make AI more accessible and user-friendly. With their web-based AI agent, you can use large language models (LLMs) in your browser to accomplish complex tasks and improve your decision-making process for various big and small problems in your daily life or business. Here&#8217;s a ... <a title="I Tried Cognosys.ai: Mind-Blown &#8230; Again 🤯" class="read-more" href="https://blog.finxter.com/i-tried-cognosys-ai/" aria-label="Read more about I Tried Cognosys.ai: Mind-Blown &#8230; Again 🤯">Read more</a></p>
<p>The post <a href="https://blog.finxter.com/i-tried-cognosys-ai/">I Tried Cognosys.ai: Mind-Blown &#8230; Again 🤯</a> appeared first on <a href="https://blog.finxter.com">Be on the Right Side of Change</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p class="has-global-color-8-background-color has-background"><a rel="noreferrer noopener" href="https://www.cognosys.ai/" data-type="URL" data-id="https://www.cognosys.ai/" target="_blank">Cognosys.ai</a> is an innovative AI platform (aka. <em>autonomous AI agent</em>) to make AI more accessible and user-friendly. With their web-based AI agent, you can use <a rel="noreferrer noopener" href="https://blog.finxter.com/the-evolution-of-large-language-models-llms-insights-from-gpt-4-and-beyond/" data-type="post" data-id="1267220" target="_blank">large language models (LLMs)</a> in your browser to accomplish complex tasks and improve your decision-making process for various big and small problems in your daily life or business.</p>



<p>Here&#8217;s a small list of ideas you can use the Cognosys autonomous agent for:</p>



<ol class="wp-block-list">
<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4da.png" alt="📚" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>Content Ideas</strong>: Generate trending health &amp; wellness topics.</li>



<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4f1.png" alt="📱" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>Product Comparison</strong>: Compare top smartphones.</li>



<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4dd.png" alt="📝" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>Blog Post Research</strong>: Get facts &amp; stats for remote work posts.</li>



<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f50e.png" alt="🔎" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>SEO Research</strong>: Discover keywords for a Europe travel blog.</li>



<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4f8.png" alt="📸" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>Influencer Search</strong>: Locate fashion influencers on Instagram.</li>



<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4c5.png" alt="📅" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>Social Media Planner</strong>: Create a content calendar for travel agencies.</li>



<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4f0.png" alt="📰" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>News Analysis</strong>: Break down specific news articles.</li>



<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f916.png" alt="🤖" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>AI News Digest</strong>: Craft an AI-focused newsletter.</li>



<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f310.png" alt="🌐" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>News Summary</strong>: Summarize news on a specific topic.</li>



<li><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4bc.png" alt="💼" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>Industry News</strong>: Develop a news roundup for a chosen industry.</li>
</ol>



<p>Here&#8217;s an example run I did:</p>



<figure class="wp-block-video"><video controls src="https://blog.finxter.com/wp-content/uploads/2023/07/cognosysAI.mp4"></video></figure>



<p></p>



<p>By exploring the potential of Cognosys.ai, you can stay ahead of the curve in an ever-changing technological landscape and leverage AI technology efficiently. Its user-oriented approach and cutting-edge features make it an essential tool for people looking to integrate AI into their daily routines.</p>



<h2 class="wp-block-heading">Overview of Cognosys.AI</h2>



<p><a href="https://www.cognosys.ai/">Cognosys.AI</a> is a powerful web-based AI agent designed to revolutionize productivity and simplify complex tasks for you. As your friendly AI assistant, Cognosys aims to elevate your everyday life with the most advanced AI technology available.</p>



<p>It&#8217;s built on <strong>proprietary software</strong>. The innovative code base behind the AI agent is inspired by recent developments in artificial intelligence and machine learning. This allows Cognosys to constantly adapt and improve, offering you a fresh, cutting-edge user experience.</p>



<p>It reminded me of Auto-GPT but it&#8217;s far more accessible, maybe more like <a href="https://blog.finxter.com/26-insane-auto-gpt-and-baby-agi-alternatives-you-ought-to-try-in-2023/" data-type="post" data-id="1422783" target="_blank" rel="noreferrer noopener">Godmode.space</a> (but even better). <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f92f.png" alt="🤯" class="wp-smiley" style="height: 1em; max-height: 1em;" /> </p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1024" height="571" src="https://blog.finxter.com/wp-content/uploads/2023/07/image-127-1024x571.png" alt="" class="wp-image-1489670" srcset="https://blog.finxter.com/wp-content/uploads/2023/07/image-127-1024x571.png 1024w, https://blog.finxter.com/wp-content/uploads/2023/07/image-127-300x167.png 300w, https://blog.finxter.com/wp-content/uploads/2023/07/image-127-768x429.png 768w, https://blog.finxter.com/wp-content/uploads/2023/07/image-127.png 1389w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p class="has-base-2-background-color has-background"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4a1.png" alt="💡" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>Recommended</strong>: <a href="https://blog.finxter.com/installing-auto-gpt-any-other-way-is-dangerous/" data-type="URL" data-id="https://blog.finxter.com/installing-auto-gpt-any-other-way-is-dangerous/" target="_blank" rel="noreferrer noopener">Setting Up Auto-GPT Any Other Way is Dangerous!</a></p>



<p>With Cognosys.AI, you&#8217;ll discover a range of features designed to support you in both your professional and personal lives. The agent is currently in beta, but it is continuously being updated with new functionalities to help you unlock the full potential of AI-driven applications.</p>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="719" src="https://blog.finxter.com/wp-content/uploads/2023/07/image-130-1024x719.png" alt="" class="wp-image-1489676" srcset="https://blog.finxter.com/wp-content/uploads/2023/07/image-130-1024x719.png 1024w, https://blog.finxter.com/wp-content/uploads/2023/07/image-130-300x211.png 300w, https://blog.finxter.com/wp-content/uploads/2023/07/image-130-768x540.png 768w, https://blog.finxter.com/wp-content/uploads/2023/07/image-130-1536x1079.png 1536w, https://blog.finxter.com/wp-content/uploads/2023/07/image-130.png 1731w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>
</div>


<p>One exciting update from Cognosys.AI is their <a rel="noreferrer noopener" href="https://www.cognosys.ai/changelog" target="_blank">Coding Mode Beta</a>, which provides you with a whole new way of interacting with the AI agent. It allows you to write and execute code directly within Cognosys, making it possible for you to build intelligent, efficient, and effective applications without having to leave the platform.</p>



<p>You can also use different LLMs such as <a href="https://blog.finxter.com/choose-the-best-open-source-llm-with-this-powerful-tool/" data-type="post" data-id="1380730" target="_blank" rel="noreferrer noopener">GPT3.5, GPT4 (pro only!), Claude+, Cohere, PaLM2</a> by clicking the <code>&#x2699; Settings</code> button:</p>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="706" src="https://blog.finxter.com/wp-content/uploads/2023/07/image-131-1024x706.png" alt="" class="wp-image-1489678" srcset="https://blog.finxter.com/wp-content/uploads/2023/07/image-131-1024x706.png 1024w, https://blog.finxter.com/wp-content/uploads/2023/07/image-131-300x207.png 300w, https://blog.finxter.com/wp-content/uploads/2023/07/image-131-768x529.png 768w, https://blog.finxter.com/wp-content/uploads/2023/07/image-131-1536x1058.png 1536w, https://blog.finxter.com/wp-content/uploads/2023/07/image-131.png 1611w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>
</div>


<p>It also provides a number of templates, simply click the <code>&#x1f4a1; Discover</code> button on the left side pane:</p>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="747" src="https://blog.finxter.com/wp-content/uploads/2023/07/image-132-1024x747.png" alt="" class="wp-image-1489683" srcset="https://blog.finxter.com/wp-content/uploads/2023/07/image-132-1024x747.png 1024w, https://blog.finxter.com/wp-content/uploads/2023/07/image-132-300x219.png 300w, https://blog.finxter.com/wp-content/uploads/2023/07/image-132-768x560.png 768w, https://blog.finxter.com/wp-content/uploads/2023/07/image-132-1536x1120.png 1536w, https://blog.finxter.com/wp-content/uploads/2023/07/image-132.png 1699w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>
</div>


<p>Awesome! <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f9d1-200d-1f4bb.png" alt="🧑‍💻" class="wp-smiley" style="height: 1em; max-height: 1em;" /> I particularly loved the creative templates such as &#8220;Financial Statement Analysis&#8221; &#8212; imagine the disruptive power of tools like these potentially replacing (or enriching) the work of millions of highly paid financial analysts. <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f92f.png" alt="🤯" class="wp-smiley" style="height: 1em; max-height: 1em;" /><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f92f.png" alt="🤯" class="wp-smiley" style="height: 1em; max-height: 1em;" /><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f92f.png" alt="🤯" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>



<h2 class="wp-block-heading">What services does cognosys.ai offer?</h2>



<p>Cognosys.ai offers a revolutionary <a href="https://www.cognosys.ai/blog/welcome-to-cognosysai" target="_blank" rel="noreferrer noopener">web-based AI agent</a> designed to simplify complex tasks and improve productivity. The AI agent can assist in areas like news aggregation, trend monitoring, and data collection.</p>



<p>I extracted this list from the offered templates &#8212; but this is only the beginning!</p>



<ol class="wp-block-list">
<li><strong>Content Ideas Generator</strong>: Find trending topics and keywords in health and wellness for blog content ideas.</li>



<li><strong>Product Comparison</strong>: Research and compare top smartphones.</li>



<li><strong>Blog Post Research</strong>: Find statistics, facts, and expert quotes for a remote work blog post.</li>



<li><strong>SEO Keyword Research</strong>: Keyword research for a blog post about the best places to visit in Europe.</li>



<li><strong>SEO Optimized Blog Writing</strong>: Keyword research for a blog post about the best places to visit in Europe.</li>



<li><strong>Influencer Research</strong>: Find Instagram influencers in the fashion industry.</li>



<li><strong>Social Media Content Calendar</strong>: Create a social media content calendar for a travel agency.</li>



<li><strong>News Article Analysis</strong>: Analyze a specific news article and extract key information.</li>



<li><strong>AI News Digest</strong>: Create a newsletter about the latest AI news.</li>



<li><strong>Topic-Specific News Summary</strong>: Summarize the latest news about a specific topic.</li>



<li><strong>Industry News Roundup</strong>: Create a news roundup for a specific industry.</li>



<li><strong>Weekly News Update</strong>: Create a weekly news update for a specific subject.</li>



<li><strong>Financial Statement Analysis</strong>: Financial ratio analysis of the uploaded financial statements.</li>



<li><strong>Website Analysis</strong>: Analyze the content and structure of example.com.</li>



<li><strong>Legal Document Summary</strong>: Summarize the uploaded legal contract.</li>



<li><strong>Patent Analysis</strong>: Analyze the uploaded patent document.</li>



<li><strong>Event Planning</strong>: Find and compare event venues in New York City.</li>



<li><strong>Product Launch Plan</strong>: Develop a plan for launching a new product.</li>



<li><strong>Research Paper Summarization</strong>: Summarize the uploaded research paper.</li>



<li><strong>Grant Proposal Writing</strong>: Write a grant proposal for an environmental conservation project.</li>



<li><strong>Personal Statement</strong>: Write a college application personal statement.</li>



<li><strong>Product Description</strong>: Create a product description for organic skincare products.</li>



<li><strong>Executive Summary</strong>: Write an executive summary for a business report.</li>



<li><strong>Case Study</strong>: Write a case study about a successful customer experience.</li>



<li><strong>Recipe Ideas</strong>: Find healthy, plant-based dinner recipes.</li>



<li><strong>Job Market Analysis</strong>: Analyze the job market for software engineers.</li>



<li><strong>Resume Evaluation</strong>: Evaluate and provide feedback on the uploaded resume.</li>



<li><strong>Django Web App</strong>: Develop a Django web app for an online store.</li>



<li><strong>WordPress Plugin</strong>: Create a custom WordPress plugin for social sharing buttons.</li>



<li><strong>Mobile App UI</strong>: Create a mobile app UI for a water intake tracker.</li>



<li><strong>Chatbot Integration</strong>: Implement a chatbot for customer support on a website.</li>



<li><strong>Angular Web App</strong>: Develop an Angular web app for project management.</li>



<li><strong>Ruby on Rails API</strong>: Create a Ruby on Rails backend API for a blog platform.</li>



<li><strong>Educational Resources</strong>: Discover online resources for learning data science.</li>



<li><strong>Sales Pitch</strong>: Create a sales pitch for eco-friendly cleaning products.</li>
</ol>



<h2 class="wp-block-heading">What industries does cognosys.ai cater to?</h2>



<p>Cognosys.ai caters to a wide range of industries, as their AI agent can assist in various tasks. From news aggregation to trend monitoring and data collection, businesses in diverse sectors can benefit from their services. See the list before.</p>



<h2 class="wp-block-heading">How can I get started with cognosys.ai?</h2>



<p>To get started with cognosys.ai, visit their <a href="https://www.cognosys.ai/" target="_blank" rel="noreferrer noopener">website</a> and sign up for an account. From there, you will be able to access their AI agent and explore its services.</p>



<h2 class="wp-block-heading">How does cognosys.ai utilize AI technology?</h2>



<p>Cognosys.ai utilizes AI technology by creating an innovative <a href="https://www.cognosys.ai/blog/welcome-to-cognosysai">AI agent</a> which serves as your personal assistant for accomplishing various tasks. They use proprietary software, and their <a href="https://blog.finxter.com/auto-gpt-in-your-browser-web-interface/" data-type="post" data-id="1397097" target="_blank" rel="noreferrer noopener">AI agent</a> is built on models like GPT-3.5.</p>



<h2 class="wp-block-heading">Are there any success stories involving cognosys.ai?</h2>



<p>Cognosys.ai is still in beta, so success stories may not be widely available. However, the potential of their AI technology is evident in the <a rel="noreferrer noopener" href="https://ai4.tools/ai-tools/cognosys/" target="_blank">positive reviews</a> and user experiences shared on their website.</p>



<h2 class="wp-block-heading">What Is Cognosys.ai?</h2>



<p>CognosysAI is a web-based AI agent similar to Auto-GPT and BabyAGI that leverages large language models (LLMs) such as GPT-3.5 and GPT-4 to autonomously complete complex tasks that involve web search or other research. You can use it as a research assistant or virtual assistant.</p>



<h2 class="wp-block-heading">Cognosys vs ChatGPT</h2>



<p>Both are AI tools based on large language models. ChatGPT focuses on a human-dialogue interface, whereas Cognosys focuses on creating an autonomous agent that prompts an LLM such as GPT-3.5 not once but multiple times, essentially designing its own prompts. This way, you can give Cognosys more difficult and complex tasks than ChatGPT. Think of it as a meta-tool one layer above ChatGPT.</p>



<h2 class="wp-block-heading">What Are Cognosys Agents and Loops?</h2>



<p>Cognosys Agents are processes, i.e., autonomous helpers that work on the objective you give them when starting the Cognosys tool. One call of the Cognosys tool may trigger multiple agents to work together on a common goal.</p>



<p>Cognosys Loops are series of tasks. If you start an agent with a specific goal, it generates a number of tasks. The series of tasks towards an objective is called a loop. As each loop completes, the agent determines whether the overall objective has been completed, or not.</p>



<h2 class="wp-block-heading">Is Cognosys Free?</h2>



<p>Cognosys.ai offers a <a href="https://www.cognosys.ai/blog/cognosys-pro-for-power-users">Free plan</a> as a generous introduction to building your own AI assistants. The free tier has 10 credits, i.e., 10 tasks. They also provide additional plans with higher limits, more advanced models, and other features to help you take your AI agent to the next level. </p>



<p>To keep learning about the fascinating world of LLMs and exponential technologies, <a href="https://blog.finxter.com/email-academy/" data-type="page" data-id="12278" target="_blank" rel="noreferrer noopener">check out my free email academy</a> (>100k subs) and read the following blog post:</p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1024" height="566" src="https://blog.finxter.com/wp-content/uploads/2023/07/image-133-1024x566.png" alt="" class="wp-image-1489691" srcset="https://blog.finxter.com/wp-content/uploads/2023/07/image-133-1024x566.png 1024w, https://blog.finxter.com/wp-content/uploads/2023/07/image-133-300x166.png 300w, https://blog.finxter.com/wp-content/uploads/2023/07/image-133-768x425.png 768w, https://blog.finxter.com/wp-content/uploads/2023/07/image-133.png 1392w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p class="has-base-2-background-color has-background"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4a1.png" alt="💡" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>Recommended</strong>: <a href="https://blog.finxter.com/auto-gpt-in-your-browser-web-interface/" data-type="URL" data-id="https://blog.finxter.com/auto-gpt-in-your-browser-web-interface/" target="_blank" rel="noreferrer noopener">Top 7 Ways to Use Auto-GPT Tools in Your Browser</a></p>
<p>The post <a href="https://blog.finxter.com/i-tried-cognosys-ai/">I Tried Cognosys.ai: Mind-Blown &#8230; Again 🤯</a> appeared first on <a href="https://blog.finxter.com">Be on the Right Side of Change</a>.</p>
]]></content:encoded>
					
		
		<enclosure url="https://blog.finxter.com/wp-content/uploads/2023/07/cognosysAI.mp4" length="5161460" type="video/mp4" />

			</item>
		<item>
		<title>GPT4all vs Vicuna: Battle of Open-Source LLMs ⚔️</title>
		<link>https://blog.finxter.com/gpt4all-vs-vicuna-battle-of-open-source-llms-%e2%9a%94%ef%b8%8f/</link>
		
		<dc:creator><![CDATA[Emily Rosemary Collins]]></dc:creator>
		<pubDate>Wed, 28 Jun 2023 08:15:40 +0000</pubDate>
				<category><![CDATA[Artificial Intelligence]]></category>
		<category><![CDATA[AutoGPT]]></category>
		<category><![CDATA[ChatGPT]]></category>
		<category><![CDATA[Large Language Model (LLM)]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[OpenAI]]></category>
		<guid isPermaLink="false">https://blog.finxter.com/?p=1466928</guid>

					<description><![CDATA[<p>Subjectively, I found Vicuna much better than GPT4all based on some examples I did in text generation and overall chatting quality. Yes, GPT4all did a great job extending its training data set with GPT4all-j, but still, I like Vicuna much more. Many voices from the open-source community (e.g., this one from Hacker News) agree with ... <a title="GPT4all vs Vicuna: Battle of Open-Source LLMs ⚔️" class="read-more" href="https://blog.finxter.com/gpt4all-vs-vicuna-battle-of-open-source-llms-%e2%9a%94%ef%b8%8f/" aria-label="Read more about GPT4all vs Vicuna: Battle of Open-Source LLMs ⚔️">Read more</a></p>
<p>The post <a href="https://blog.finxter.com/gpt4all-vs-vicuna-battle-of-open-source-llms-%e2%9a%94%ef%b8%8f/">GPT4all vs Vicuna: Battle of Open-Source LLMs ⚔️</a> appeared first on <a href="https://blog.finxter.com">Be on the Right Side of Change</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p class="has-global-color-8-background-color has-background">Subjectively, I found Vicuna much better than GPT4all based on some examples I did in text generation and overall chatting quality. Yes, GPT4all did a great job extending its training data set with GPT4all-j, but still, I like Vicuna much more. Many voices from the open-source community (e.g., <a rel="noreferrer noopener" href="https://news.ycombinator.com/item?id=35441299" data-type="URL" data-id="https://news.ycombinator.com/item?id=35441299" target="_blank">this</a> one from Hacker News) agree with my view.</p>



<p>This is a biased sample and personal opinion, though, let&#8217;s dive into the article for a more thorough evaluation!</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<p>Large language models (LLMs) such as GPT4All and Vicuna have evolved to provide highly accurate and sophisticated language representations. </p>



<p>They differ in various aspects such as architecture, performance, and features, which may influence developers&#8217; preferences in choosing the ideal model for their specific requirements. </p>



<p>Additionally, these language models have different levels of institutional involvement, commercial aspects, and tools, all of which might impact project costs, moderation, safety, and ease of implementation.</p>



<h2 class="wp-block-heading">GPT4All vs Vicuna Overview</h2>



<p>GPT4All and Vicuna are both open-source and impressive descendants of the Meta LLaMA model, attracting plenty of attention from the AI community. While both models demonstrate strong potential in handling dialogue generation tasks, there are a few key differences between them <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f916.png" alt="🤖" class="wp-smiley" style="height: 1em; max-height: 1em;" />.</p>


<div class="wp-block-image">
<figure class="aligncenter size-full"><img loading="lazy" decoding="async" width="599" height="256" src="https://blog.finxter.com/wp-content/uploads/2023/06/image-316.png" alt="" class="wp-image-1466959" srcset="https://blog.finxter.com/wp-content/uploads/2023/06/image-316.png 599w, https://blog.finxter.com/wp-content/uploads/2023/06/image-316-300x128.png 300w" sizes="auto, (max-width: 599px) 100vw, 599px" /><figcaption class="wp-element-caption"><em>Relative Response Quality Assessed by GPT-4 (<a href="https://lmsys.org/blog/2023-03-30-vicuna/" data-type="URL" data-id="https://lmsys.org/blog/2023-03-30-vicuna/" target="_blank" rel="noreferrer noopener">source</a>)</em></figcaption></figure>
</div>


<p>GPT4All-J is a <a href="https://www.jonkrohn.com/posts/2023/4/21/open-source-chatgpt-alpaca-vicua-gpt4all-j-and-dolly-20">commercially-licensed</a> alternative, making it an attractive option for businesses and developers seeking to incorporate this technology into their applications. On the other hand, Vicuna has been tested to achieve more than <a href="https://sapling.ai/llm/gpt4all-vs-vicuna" target="_blank" rel="noreferrer noopener">90% of ChatGPT&#8217;s quality</a> in user preference tests, even outperforming competing models like Alpaca.</p>



<p>The performance of Vicuna, in particular, has garnered much praise. For example, in a <a href="https://lmsys.org/blog/2023-03-30-vicuna/" target="_blank" rel="noreferrer noopener">GPT-4 Evaluation</a>, Vicuna-13b scored 10/10, delivering a detailed and engaging response fitting the user&#8217;s requirements. This level of performance sets Vicuna apart as a reliable option for various real-world applications <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4a1.png" alt="💡" class="wp-smiley" style="height: 1em; max-height: 1em;" />.</p>



<p>Both GPT4All and Vicuna enjoy a level of popularity among developers, as evident by discussions and comparisons on platforms like <a rel="noreferrer noopener" href="https://www.reddit.com/r/LocalLLaMA/comments/13fnyah/you_guys_are_missing_out_on_gpt4x_vicuna/" target="_blank">Reddit</a>. While GPT4All-J offers commercial licensing, Vicuna&#8217;s edge in performance makes it a powerful contender within the AI landscape <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f525.png" alt="🔥" class="wp-smiley" style="height: 1em; max-height: 1em;" />.</p>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img decoding="async" src="https://blog.finxter.com/wp-content/uploads/2023/03/228352356-de66ca7a-df70-474e-b929-2e3656165051.gif" alt=""/></figure>
</div>


<p class="has-base-2-background-color has-background"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4a1.png" alt="💡" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>Recommended</strong>: <a href="https://blog.finxter.com/gpt4all-quickstart-offline-chatbot-on-your-computer/" data-type="URL" data-id="https://blog.finxter.com/gpt4all-quickstart-offline-chatbot-on-your-computer/" target="_blank" rel="noreferrer noopener">GPT4All Quickstart – Offline Chatbot on Your Computer</a></p>



<h2 class="wp-block-heading">Vicuna-13B</h2>



<p>Vicuna-13B is a descendant of the Meta LLaMA model and is primarily trained on dialogue data collected from the ShareGPT website <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f310.png" alt="🌐" class="wp-smiley" style="height: 1em; max-height: 1em;" />. According to its authors, Vicuna achieves more than 90% of ChatGPT&#8217;s quality in user preference tests, while significantly outperforming Alpaca <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f999.png" alt="🦙" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <a href="https://sapling.ai/llm/gpt4all-vs-vicuna" target="_blank" rel="noreferrer noopener">(source)</a>. </p>



<p>The following video exemplifies a run of the Vicuna-13b model (<a href="https://lmsys.org/blog/2023-03-30-vicuna/" data-type="URL" data-id="https://lmsys.org/blog/2023-03-30-vicuna/" target="_blank" rel="noreferrer noopener">source</a>):</p>



<figure class="wp-block-video aligncenter"><video autoplay controls loop muted src="https://lmsys.org/images/blog/vicuna/demo-narrow.mp4"></video></figure>



<p>The development of Vicuna focuses on creating a high-quality AI-driven conversation experience and building upon the existing large language model architecture.</p>



<p>Vicuna and GPT-4 are both part of the family of open-source models that aim to democratize AI and large language modeling <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f30f.png" alt="🌏" class="wp-smiley" style="height: 1em; max-height: 1em;" />. With their 13B model size, they offer powerful solutions for natural language understanding and generation, enabling advances in AI-based conversation, content creation, and much more. </p>



<p>By continuously refining these models, developers aim to push the boundaries of large language model capabilities and unlock new opportunities for AI-driven applications.</p>



<p class="has-base-2-background-color has-background"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4a1.png" alt="💡" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>Recommended</strong>: <a href="https://blog.finxter.com/news-april-2023-ai/" data-type="URL" data-id="https://blog.finxter.com/news-april-2023-ai/" target="_blank" rel="noreferrer noopener">8 Unbelievable AI Innovations Shaking Up the World Today!</a></p>



<h2 class="wp-block-heading">Performance and Quality</h2>



<p>GPT4All and Vicuna are two open-source, large language models gaining attention in the artificial intelligence community. When comparing their performance and quality, it&#8217;s important to consider various factors, such as data quality, evaluation frameworks, and overall performance assessment.</p>



<p>Vicuna has been noted for achieving more than <a href="https://sapling.ai/llm/gpt4all-vs-vicuna" target="_blank" rel="noreferrer noopener">90% of ChatGPT&#8217;s quality</a> in user preference tests and outperforming Alpaca. It is considered the heir apparent of the instruct-finetuned LLaMA model family. </p>



<p>On the other hand, although GPT4All has its own impressive merits, some users have reported that Vicuna 13B 1.1 and GPT4All-13B-snoozy show a <a href="https://www.reddit.com/r/LocalLLaMA/comments/13avdxb/gpt_for_all_13b_gpt4all13bsnoozygptq_is/" target="_blank" rel="noreferrer noopener">clear difference in quality</a>, with the latter being outperformed by the former.</p>



<p>In one comparison between the two models, Vicuna provided more accurate and relevant responses to prompts, while GPT4All&#8217;s responses were occasionally less precise. </p>



<p>For example, when tasked with generating a blog post, Vicuna composed a <a href="https://lmsys.org/blog/2023-03-30-vicuna/" target="_blank" rel="noreferrer noopener">detailed and engaging piece</a> about a trip to Hawaii, whereas GPT4All provided only a brief overview of the blog post and didn&#8217;t fully meet the request.</p>



<p>When it comes to performance assessment, both models have their merits and drawbacks. It is essential to consider factors like response time, system resource utilization, and the specific use case when evaluating their relative performance. However, in terms of data quality and evaluation frameworks, many users find that Vicuna outshines GPT4All overall.</p>


<div class="wp-block-image">
<figure class="aligncenter size-full"><a href="https://blog.finxter.com/11-best-chatgpt-alternatives/" target="_blank" rel="noreferrer noopener"><img loading="lazy" decoding="async" width="731" height="408" src="https://blog.finxter.com/wp-content/uploads/2023/06/image-310.png" alt="" class="wp-image-1466940" srcset="https://blog.finxter.com/wp-content/uploads/2023/06/image-310.png 731w, https://blog.finxter.com/wp-content/uploads/2023/06/image-310-300x167.png 300w" sizes="auto, (max-width: 731px) 100vw, 731px" /></a></figure>
</div>


<p class="has-base-2-background-color has-background"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4a1.png" alt="💡" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>Recommended</strong>: <a href="https://blog.finxter.com/11-best-chatgpt-alternatives/" data-type="URL" data-id="https://blog.finxter.com/11-best-chatgpt-alternatives/" target="_blank" rel="noreferrer noopener">11 Best ChatGPT Alternatives</a></p>



<h2 class="wp-block-heading">Comparing Features</h2>



<h3 class="wp-block-heading">Fine-Tuning and Training</h3>



<p>GPT4All and Vicuna are both language models that have undergone extensive fine-tuning and training processes. </p>



<p>GPT4All, a descendant of the GPT-4 LLM model, has been finetuned on various datasets, including Teknium&#8217;s GPTeacher dataset and the unreleased Roleplay v2 dataset, using 8 A100-80GB GPUs for 5 epochs [<a rel="noreferrer noopener" href="https://www.reddit.com/r/LocalLLaMA/comments/13fnyah/you_guys_are_missing_out_on_gpt4x_vicuna/" target="_blank">source</a>]. </p>



<p>On the other hand, Vicuna achieves more than 90% of ChatGPT&#8217;s quality, vastly outperforming Alpaca, its closest relative [<a href="https://sapling.ai/llm/gpt4all-vs-vicuna" target="_blank" rel="noreferrer noopener">source</a>].</p>



<h3 class="wp-block-heading">Language Generation and Reasoning</h3>



<p>Both GPT4All and Vicuna excel in language generation and reasoning tasks. They are capable of understanding complex questions, generating coherent answers, and performing tasks such as math calculations or question resolution within given context. </p>



<p>The advanced training of these models enables them to handle long sequences and understand maximum context lengths, resulting in more accurate and informative responses.</p>



<h3 class="wp-block-heading">User Interaction and Conversations</h3>



<p>A standout feature of both GPT4All and Vicuna is their ability to engage in user interactions and multi-round conversations. Due to the focus on dialogue data during their training process, these models are well-equipped to handle back-and-forth conversations and provide context-aware answers. In user preference tests, Vicuna achieves impressive results, with quality approaching that of ChatGPT [<a href="https://sapling.ai/llm/gpt4all-vs-vicuna" target="_blank" rel="noreferrer noopener">source</a>].</p>



<p class="has-base-2-background-color has-background"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4a1.png" alt="💡" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>Recommended</strong>: <a href="https://blog.finxter.com/a-quick-and-dirty-dip-into-cutting-edge-open-source-llm-research/" data-type="URL" data-id="https://blog.finxter.com/a-quick-and-dirty-dip-into-cutting-edge-open-source-llm-research/" target="_blank" rel="noreferrer noopener">A Quick and Dirty Dip Into Cutting-Edge Open-Source LLM Research</a></p>



<h2 class="wp-block-heading">Institutional Involvement</h2>



<p>GPT4All is an open-source project associated with Nomic, an ecosystem for training large language models (LLMs) like GPT-J and LLaMA <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f999.png" alt="🦙" class="wp-smiley" style="height: 1em; max-height: 1em;" />. Their main goal is to make cutting-edge LLM technology accessible for everyone without the need for high computing resources or expenses <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4bb.png" alt="💻" class="wp-smiley" style="height: 1em; max-height: 1em;" />. For more details about GPT4All, you can visit their <a href="https://github.com/nomic-ai/gpt4all" target="_blank" rel="noreferrer noopener">GitHub repository</a>.</p>



<p>On the other hand, Vicuna is an LLM developed by Stanford University. It boasts impressive results, achieving more than 90% quality of OpenAI ChatGPT and Google Bard while consistently outperforming other models like LLaMA and Stanford Alpaca in over 90% of cases <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f31f.png" alt="🌟" class="wp-smiley" style="height: 1em; max-height: 1em;" />. </p>



<p>The cost of training Vicuna-13B is around $300, making it a cheaper alternative to other powerful LLMs on the market <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f9ea.png" alt="🧪" class="wp-smiley" style="height: 1em; max-height: 1em;" />. </p>



<p><a href="https://www.reddit.com/r/LocalLLaMA/comments/13avdxb/gpt_for_all_13b_gpt4all13bsnoozygptq_is/" target="_blank" rel="noreferrer noopener">Reddit users discussed</a> that GPT4All-J and Vicuna both have their own strengths and weaknesses, leading to user preferences and use cases determining which model might be more suitable for a given task.</p>



<p>OpenAI, the organization behind GPT-3 and GPT-4, continues to play a significant role in the field of AI language models <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4a1.png" alt="💡" class="wp-smiley" style="height: 1em; max-height: 1em;" />. While not directly involved with GPT4All or Vicuna, their models provide a benchmark for comparison with these open-source alternatives.</p>



<p>Google Bard is a product of Google&#8217;s research team, and its focus is on generating human-like written content <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f58a.png" alt="🖊" class="wp-smiley" style="height: 1em; max-height: 1em;" />. Like OpenAI&#8217;s models, Google Bard serves as a point of reference for developers trying to improve the performances of their LLMs.</p>



<p>Stanford Alpaca <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f999.png" alt="🦙" class="wp-smiley" style="height: 1em; max-height: 1em;" /> is another LLM developed at Stanford University and is mainly designed for low-resource settings. It maintains an adequate balance between computational requirements and quality of generated content, making it a valuable choice for users with limited budgets and resources.</p>



<p>Other institutions, such as UC Berkeley, CMU, and UC San Diego, are deeply involved in AI research and contribute significantly to the field of LLMs, although their direct association with GPT4All and Vicuna might not be explicit. These research centers often collaborate, sharing their knowledge and resources to advance the development of AI technology <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f393.png" alt="🎓" class="wp-smiley" style="height: 1em; max-height: 1em;" />.</p>



<p class="has-base-2-background-color has-background"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4a1.png" alt="💡" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>Recommended</strong>: <a href="https://blog.finxter.com/gpt4all-vs-alpaca-comparing-open-source-llms/" data-type="URL" data-id="https://blog.finxter.com/gpt4all-vs-alpaca-comparing-open-source-llms/" target="_blank" rel="noreferrer noopener">GPT4all vs Alpaca: Comparing Open-Source LLMs</a></p>



<h2 class="wp-block-heading">Open-Source and Commercial Aspects</h2>



<p>GPT4All and Vicuna are both open-source chatbot models that allow developers to create their own chatbots utilizing large language model (LLM) architectures. These open-source chatbots provide an affordable and customizable option for developers aiming to use LLMs in both personal and commercial projects.</p>



<p>GPT4All, as part of the Nomic ecosystem, was initially released on <a href="https://github.com/nomic-ai/gpt4all" target="_blank" rel="noreferrer noopener">2023-03-26</a>. It leverages LLaMA and GPT-J backbones to create an environment for training and fine-tuning chatbot models. <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f60a.png" alt="😊" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Developers can access and modify the GPT4All source code, allowing them to create tailored solutions for various applications.</p>



<p>Vicuna, on the other hand, is another open-source chatbot that has been praised for its performance, even outscoring popular models like Alpaca-13b in certain <a href="https://lmsys.org/blog/2023-03-30-vicuna/">evaluations</a>. Like GPT4All, developers can use Vicuna for various purposes, including both non-commercial and commercial use.</p>



<p>When incorporating these open-source chatbots into commercial projects, it&#8217;s essential to consider the implications on computing resources; LLMs like GPT4All or Vicuna often require powerful GPUs to run efficiently. However, the open-source nature of these projects allows developers to optimize the models to fit their particular hardware and computational requirements. <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f5a5.png" alt="🖥" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>



<p>As open-source LLMs gain more prominence in the AI community, developers can expect an increase in support, resources, and documentation regarding these models, helping streamline the process of integrating chatbot solutions in projects both big and small.</p>



<p>By utilizing GPT4All and Vicuna models, businesses and individuals alike can take advantage of the cutting-edge natural language processing technology without facing hefty licensing fees or restrictive usage limitations. <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f31f.png" alt="🌟" class="wp-smiley" style="height: 1em; max-height: 1em;" /> This freedom not only fosters greater innovation in the field of natural language processing but also provides widespread access to powerful AI tools for diverse applications and industries.</p>



<p class="has-base-2-background-color has-background"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4a1.png" alt="💡" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>Recommended</strong>: Blog</p>



<h2 class="wp-block-heading">Cost Analysis</h2>



<p>When comparing GPT4All and Vicuna, the cost difference between these two models is notable. GPT4All aims to provide a more affordable option for those interested in running powerful language models on their hardware. However, Vicuna has become known for its cost-efficiency, with the training cost for Vicuna-13B estimated at around <a href="https://www.reddit.com/r/ChatGPT/comments/127gwk6/gpt4all_gives_you_the_chance_to_run_a_gptlike/" target="_blank" rel="noreferrer noopener">$300</a>.</p>



<p>Optimization is a critical factor in determining the cost of running AI models like GPT4All and Vicuna. By optimizing the training process, it is possible to reduce both the time taken and the expense of training these models. In this regard, Vicuna appears to have the edge <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f3c6.png" alt="🏆" class="wp-smiley" style="height: 1em; max-height: 1em;" />, outperforming other models like LLaMA and Stanford Alpaca in more than <a href="https://www.reddit.com/r/ChatGPT/comments/127gwk6/gpt4all_gives_you_the_chance_to_run_a_gptlike/" target="_blank" rel="noreferrer noopener">90% of cases</a>.</p>



<p>Taking the processing power and hardware requirements into account is essential in a comprehensive cost analysis. While both GPT4All and Vicuna are designed for running on single GPUs, it is crucial to evaluate the specific requirements before making a decision. As a result, users should be aware of potential hardware limitations or upgrades needed when considering GPT4All or Vicuna.</p>


<div class="wp-block-image">
<figure class="aligncenter size-full"><a href="https://blog.finxter.com/gpt4all-vs-gpt4all-j/" target="_blank" rel="noreferrer noopener"><img loading="lazy" decoding="async" width="1024" height="573" src="https://blog.finxter.com/wp-content/uploads/2023/06/image-311.png" alt="" class="wp-image-1466948" srcset="https://blog.finxter.com/wp-content/uploads/2023/06/image-311.png 1024w, https://blog.finxter.com/wp-content/uploads/2023/06/image-311-300x168.png 300w, https://blog.finxter.com/wp-content/uploads/2023/06/image-311-768x430.png 768w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></a></figure>
</div>


<p class="has-base-2-background-color has-background"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4a1.png" alt="💡" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>Recommended</strong>: <a href="https://blog.finxter.com/gpt4all-vs-gpt4all-j/" data-type="URL" data-id="https://blog.finxter.com/gpt4all-vs-gpt4all-j/" target="_blank" rel="noreferrer noopener">GPT4ALL vs GPT4ALL-J</a></p>



<h2 class="wp-block-heading">Tools and Technologies</h2>



<p>GPT4All and Vicuna are two widely-discussed LLMs, built using advanced tools and technologies. GPT4All is an open-source ecosystem for chatbots with a <a href="https://github.com/nomic-ai/gpt4all">LLaMA and GPT-J backbone</a>, while Stanford&#8217;s Vicuna is known for achieving more than <a href="https://www.reddit.com/r/ChatGPT/comments/127gwk6/gpt4all_gives_you_the_chance_to_run_a_gptlike/">90% quality</a> of OpenAI ChatGPT and Google Bard.</p>



<p>Both models employ <strong>PyTorch FSDP</strong> for efficient model parallelism, enabling them to scale efficiently on large numbers of <strong>A100 GPUs</strong>. The serving system in each LLM plays a crucial role in ensuring high-performance responses to user inputs, making them ideal for real-time applications.</p>



<p>To increase performance and reduce costs, they implement <strong>memory optimizations</strong> such as gradient checkpointing and flash attention mechanisms. <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f525.png" alt="🔥" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Gradient checkpointing helps in saving memory by trading compute for extra memory space, while flash attention reduces the computational complexity of attention.</p>



<p>Another significant aspect of these LLMs is <strong>SkyPilot</strong>, a library that enables them to handle sparse tensors, further contributing to storage optimization. This technology allows models to consume less memory and facilitates their deployment on lower-end hardware.</p>



<p>Additionally, to maximize cost efficiency, both GPT4All and Vicuna use spot instances for training purposes. <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f3af.png" alt="🎯" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>Spot instances</strong> are temporary cloud computing resources that offer substantial cost savings over regular instances, making the training of these large language models more accessible.</p>



<p class="has-base-2-background-color has-background"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4a1.png" alt="💡" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>Recommended</strong>: <a href="https://blog.finxter.com/what-is-autogpt-and-how-to-get-started-your-quick-guide-to-success/" data-type="URL" data-id="https://blog.finxter.com/what-is-autogpt-and-how-to-get-started-your-quick-guide-to-success/" target="_blank" rel="noreferrer noopener">What is AutoGPT and How to Get Started?</a></p>



<h2 class="wp-block-heading">Popular GPT-based Implementations</h2>



<p>GPT-based implementations have gained widespread popularity due to their ability to generate human-like text. In the race to build advanced language models, two prominent contenders are <a href="https://sapling.ai/llm/gpt4all-vs-vicuna">GPT4All</a> and <a href="https://lmsys.org/blog/2023-03-30-vicuna/">Vicuna</a>. Both aim to offer efficient and effective large language models for various applications, such as chatbots and natural language processing tasks.</p>



<p>GPT4All is developed by Nomic, an organization focused on creating an ecosystem for open-source chatbots. The platform employs LLaMA and GPT-J backbones to achieve impressive results for language generation. Thanks to an active community and continuous development, GPT4All has become a popular choice for developers <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4bb.png" alt="💻" class="wp-smiley" style="height: 1em; max-height: 1em;" />.</p>



<p>Vicuna, on the other hand, is a lightweight GPT-based implementation that has shown considerable promise. In comparison tests, GPT-4 has preferred Vicuna over other state-of-the-art open-source models like LLaMA and Alpaca in more than 90% of the questions. This impressive performance has caught the attention of researchers and developers alike <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f31f.png" alt="🌟" class="wp-smiley" style="height: 1em; max-height: 1em;" />.</p>



<p>In addition to GPT4All and Vicuna, the world of GPT-based implementations has witnessed the emergence of other remarkable models such as ChatGPT, Meta LLaMA, Koala, and ShareGPT. Each of these models serves specific purposes and offers unique features for developers to capitalize upon. For instance, ChatGPT is designed to process natural language input and generate appropriate responses, making it suitable for chatbot applications <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f916.png" alt="🤖" class="wp-smiley" style="height: 1em; max-height: 1em;" />.</p>



<p>Meta LLaMA, Koala, and ShareGPT are also worth exploring for various use cases. While Meta LLaMA is focused on offering tools for fine-tuning GPT-based models, Koala emphasizes quick deployment and ease of use in its language model implementation. ShareGPT aims to provide a shared platform for multiple users to collaborate on GPT-based projects with ease <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f465.png" alt="👥" class="wp-smiley" style="height: 1em; max-height: 1em;" />.</p>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="571" src="https://blog.finxter.com/wp-content/uploads/2023/06/image-312-1024x571.png" alt="" class="wp-image-1466950" srcset="https://blog.finxter.com/wp-content/uploads/2023/06/image-312-1024x571.png 1024w, https://blog.finxter.com/wp-content/uploads/2023/06/image-312-300x167.png 300w, https://blog.finxter.com/wp-content/uploads/2023/06/image-312-768x428.png 768w, https://blog.finxter.com/wp-content/uploads/2023/06/image-312.png 1214w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>
</div>


<p class="has-base-2-background-color has-background"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4a1.png" alt="💡" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>Recommended</strong>: <a href="https://blog.finxter.com/30-creative-autogpt-use-cases-to-make-money-online/" data-type="URL" data-id="https://blog.finxter.com/30-creative-autogpt-use-cases-to-make-money-online/" target="_blank" rel="noreferrer noopener">30 Creative AutoGPT Use Cases to Make Money Online</a></p>



<h2 class="wp-block-heading">Other Language Models</h2>



<p>Aside from GPT4All and Vicuna, there are several other large language models (LLMs) in the field of natural language processing (NLP) that are worth mentioning. One such model is <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f999.png" alt="🦙" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <a href="https://www.reddit.com/r/LocalLLaMA/comments/12ezcly/comparing_models_gpt4xalpaca_vicuna_and_oasst/">LLaMA</a>, which is a parent model for Alpaca and Vicuna. LLaMA is a community-oriented project aimed at developing and advancing state-of-the-art open-source NLP models.</p>



<p><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f999.png" alt="🦙" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Alpaca is another LLM with 7-billion parameters and is known for its <a href="https://www.jonkrohn.com/posts/2023/4/21/open-source-chatgpt-alpaca-vicua-gpt4all-j-and-dolly-20" target="_blank" rel="noreferrer noopener">GPT-3.5-like generation</a>. It provides impressive performance for a wide range of NLP tasks. Interestingly, Vicuna has been modeled on Alpaca and even <a href="https://www.jonkrohn.com/posts/2023/4/21/open-source-chatgpt-alpaca-vicua-gpt4all-j-and-dolly-20">outperforms it</a> in certain cases. Both models have been compared to <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f916.png" alt="🤖" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <a href="https://www.openai.com/blog/openai-api/">GPT-3</a>, which is one of the most popular LLMs developed by OpenAI.</p>



<p>Another noteworthy LLM is <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f426.png" alt="🐦" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <a href="https://www.jonkrohn.com/posts/2023/4/21/open-source-chatgpt-alpaca-vicua-gpt4all-j-and-dolly-20" target="_blank" rel="noreferrer noopener">Dolly</a>, a deep-learning model known for its impressive image synthesis capabilities. Dolly 2.0 was released as an open-source, with advancements in both image synthesis and performance.</p>



<p>In addition to these, there is <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f406.png" alt="🐆" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <a href="https://levelup.gitconnected.com/these-5-new-open-sourced-language-models-that-are-worth-try-30d7bcb46ab5" target="_blank" rel="noreferrer noopener">GPT4All-J</a>, which is designed for commercial use. This model is built by Nomic AI on top of LLaMA and has performance comparable to Alpaca and Vicuna.</p>



<p class="has-base-2-background-color has-background"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4a1.png" alt="💡" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>Recommended</strong>: <a href="https://blog.finxter.com/10-high-iq-things-gpt-4-can-do-that-gpt-3-5-cant/" data-type="URL" data-id="https://blog.finxter.com/10-high-iq-things-gpt-4-can-do-that-gpt-3-5-cant/" target="_blank" rel="noreferrer noopener">10 High-IQ Things GPT-4 Can Do That GPT-3.5 Can’t</a></p>



<h2 class="wp-block-heading">Distributed Systems and Workers</h2>



<p>Distributed systems in the context of GPT4All and Vicuna play a vital role in achieving efficient performance and scalability. The implementation of distributed workers, particularly GPU workers, helps maximize the effectiveness of these language models while maintaining a manageable cost.</p>



<p>GPT4All utilizes an ecosystem that supports distributed workers, allowing for the efficient training and execution of LLaMA and GPT-J backbones <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4aa.png" alt="💪" class="wp-smiley" style="height: 1em; max-height: 1em;" />. The collaboration between various workers contributes to a fault-tolerant controller that can withstand potential system errors and deliver seamless processing power.</p>



<p>In the case of Vicuna, the serving system supports the flexible plug-in of <a href="https://lmsys.org/blog/2023-03-30-vicuna/">GPU workers</a> from both on-premise clusters and the cloud, enabling adaptability and accessibility. This approach provides efficient scalability that caters to varying computational requirements <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4bb.png" alt="💻" class="wp-smiley" style="height: 1em; max-height: 1em;" />.</p>



<p>A fault-tolerant controller is essential in distributed systems as it can manage worker node failures and maintain system reliability. With this robust failsafe solution, both GPT4All and Vicuna can ensure consistent and stable performance.</p>


<div class="wp-block-image">
<figure class="aligncenter size-large"><a href="https://blog.finxter.com/top-eight-gpt-4-productivity-use-cases-for-coders-no-bs/" target="_blank" rel="noreferrer noopener"><img loading="lazy" decoding="async" width="1024" height="573" src="https://blog.finxter.com/wp-content/uploads/2023/06/image-313-1024x573.png" alt="" class="wp-image-1466952" srcset="https://blog.finxter.com/wp-content/uploads/2023/06/image-313-1024x573.png 1024w, https://blog.finxter.com/wp-content/uploads/2023/06/image-313-300x168.png 300w, https://blog.finxter.com/wp-content/uploads/2023/06/image-313-768x430.png 768w, https://blog.finxter.com/wp-content/uploads/2023/06/image-313.png 1339w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></a></figure>
</div>


<p class="has-base-2-background-color has-background"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4a1.png" alt="💡" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>Recommended</strong>: <a href="https://blog.finxter.com/top-eight-gpt-4-productivity-use-cases-for-coders-no-bs/" data-type="URL" data-id="https://blog.finxter.com/top-eight-gpt-4-productivity-use-cases-for-coders-no-bs/" target="_blank" rel="noreferrer noopener">Top Eight GPT-4 Productivity Use Cases for Coders (No BS)</a></p>



<h2 class="wp-block-heading">Supported Formats</h2>



<p>GPT4All and Vicuna are both versatile language models that can handle a variety of input formats. They cater to different use cases, including text generation, conversational AI, and more. <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f916.png" alt="🤖" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>



<p>One of the formats supported by both GPT4All and Vicuna is <strong>HTML</strong>. HTML is the standard markup language for creating web pages and web applications. Both models can process, understand, and generate content in HTML format, making them ideal for use in web-related tasks such as content generation, editing, and optimization. <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f310.png" alt="🌐" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>



<p>Another important format supported by these models is <strong>Markdown</strong>. Markdown is a lightweight markup language designed to be an easy-to-read and easy-to-write plain text format. It is often used for formatting text on platforms like GitHub, Reddit, and many other content publishing platforms. GPT4All and Vicuna can understand and generate text in Markdown, making them beneficial for tasks that require text formatting, documentation, or social media content. <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4dd.png" alt="📝" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>



<p>Finally, both GPT4All and Vicuna are proficient in dealing with low-quality samples. They can extract meaningful information from poorly structured or low-quality text inputs, enabling them to handle a wide range of user inputs and languages with varying quality. This feature is particularly useful in chatbot applications and other scenarios where user input may deviate from standard language conventions. <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f465.png" alt="👥" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>



<p class="has-global-color-8-background-color has-background">Overall, GPT4All and Vicuna support various formats and are capable of handling different kinds of tasks, making them suitable for a wide range of applications. Their support for HTML, Markdown, and low-quality samples demonstrates their adaptability and usefulness in different domains. <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4a1.png" alt="💡" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>



<h2 class="wp-block-heading">Frequently Asked Questions</h2>



<h3 class="wp-block-heading">What are the key differences between gpt4all and Vicuna LLM?</h3>



<p>GPT4All and Vicuna LLM have some differences in their training and performance. Vicuna LLM is a descendant of the Meta LLaMA model trained on dialogue data and claims to achieve <a href="https://sapling.ai/llm/gpt4all-vs-vicuna" target="_blank" rel="noreferrer noopener">more than 90% of ChatGPT&#8217;s quality</a>. On the other hand, GPT4All uses different datasets and techniques for training, resulting in varying performance levels.</p>



<h3 class="wp-block-heading">How do the training methods of gpt4all and Vicuna LLM compare?</h3>



<p>Vicuna LLM&#8217;s training is based on dialogue data collected from the ShareGPT website. It is fine-tuned with a mixed model that had Alpaca training on top of <a href="https://www.reddit.com/r/LocalLLaMA/comments/13fnyah/you_guys_are_missing_out_on_gpt4x_vicuna/" target="_blank" rel="noreferrer noopener">Vicuna 1.1</a>. GPT4All, however, has different training methods, utilizing various datasets such as the OpenAssistant Conversations Dataset and the GPT4All Prompt Generations dataset in some of its <a href="https://sapling.ai/llm/gpt4all-vs-stablevicuna" target="_blank" rel="noreferrer noopener">variants like StableVicuna</a>.</p>



<h3 class="wp-block-heading">Which system, gpt4all or Vicuna LLM, has a wider range of applications?</h3>



<p>It is difficult to determine a clear winner when it comes to the range of applications, as both systems are continuously evolving and adapting to new tasks. Factors such as the specific variant, dataset, and training method can significantly affect each system&#8217;s performance and versatility.</p>



<h3 class="wp-block-heading">Are there significant performance variations between gpt4all and Vicuna LLM?</h3>



<p>Yes, there are performance variations between the two systems. In some cases, GPT-4 rates Vicuna LLM&#8217;s response as <a href="https://lmsys.org/blog/2023-03-30-vicuna/" target="_blank" rel="noreferrer noopener">better or equal to ChatGPT&#8217;s</a>. However, the performance differences depend on task complexity, system variant, and fine-tuning techniques.</p>



<h3 class="wp-block-heading">How do gpt4all and Vicuna LLM handle complex tasks?</h3>



<p>Both systems are effective at handling a variety of tasks. For example, Vicuna LLM demonstrates its capability to compare celestial objects, as seen in a <a href="https://www.reddit.com/r/LocalLLaMA/comments/12ezcly/comparing_models_gpt4xalpaca_vicuna_and_oasst/" target="_blank" rel="noreferrer noopener">Reddit comparison post</a>. In contrast, GPT4All can perform general tasks and specific applications, depending on the variant and training method.</p>



<h3 class="wp-block-heading">Which system is more cost-effective: gpt4all or Vicuna LLM?</h3>



<p>It is challenging to determine the cost-effectiveness of either system without complete knowledge of each model and its deployment environment. Factors such as the specific variant, dataset, training method, and infrastructure requirements may contribute to each system&#8217;s overall cost. However, both systems demonstrate their effectiveness and impressive results in various tasks, making them valuable tools for developers and researchers.</p>


<div class="wp-block-image">
<figure class="aligncenter size-large"><a href="https://blog.finxter.com/minigpt-4-the-latest-breakthrough-in-language-generation-technology/" target="_blank" rel="noreferrer noopener"><img loading="lazy" decoding="async" width="1024" height="575" src="https://blog.finxter.com/wp-content/uploads/2023/06/image-314-1024x575.png" alt="" class="wp-image-1466957" srcset="https://blog.finxter.com/wp-content/uploads/2023/06/image-314-1024x575.png 1024w, https://blog.finxter.com/wp-content/uploads/2023/06/image-314-300x168.png 300w, https://blog.finxter.com/wp-content/uploads/2023/06/image-314-768x431.png 768w, https://blog.finxter.com/wp-content/uploads/2023/06/image-314.png 1536w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></a></figure>
</div>


<p class="has-base-2-background-color has-background"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4a1.png" alt="💡" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>Recommended</strong>: <a href="https://blog.finxter.com/minigpt-4-the-latest-breakthrough-in-language-generation-technology/" data-type="URL" data-id="https://blog.finxter.com/minigpt-4-the-latest-breakthrough-in-language-generation-technology/" target="_blank" rel="noreferrer noopener">MiniGPT-4: The Latest Breakthrough in Language Generation Technology</a></p>
<p>The post <a href="https://blog.finxter.com/gpt4all-vs-vicuna-battle-of-open-source-llms-%e2%9a%94%ef%b8%8f/">GPT4all vs Vicuna: Battle of Open-Source LLMs ⚔️</a> appeared first on <a href="https://blog.finxter.com">Be on the Right Side of Change</a>.</p>
]]></content:encoded>
					
		
		<enclosure url="https://lmsys.org/images/blog/vicuna/demo-narrow.mp4" length="3362461" type="video/mp4" />

			</item>
		<item>
		<title>26 Insane Auto-GPT and Baby AGI Alternatives You Ought to Try in 2023</title>
		<link>https://blog.finxter.com/26-insane-auto-gpt-and-baby-agi-alternatives-you-ought-to-try-in-2023/</link>
		
		<dc:creator><![CDATA[Chris]]></dc:creator>
		<pubDate>Thu, 08 Jun 2023 11:09:50 +0000</pubDate>
				<category><![CDATA[AutoGPT]]></category>
		<category><![CDATA[Baby AGI]]></category>
		<category><![CDATA[Large Language Model (LLM)]]></category>
		<category><![CDATA[Machine Learning]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[OpenAI]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[Prompt Engineering]]></category>
		<guid isPermaLink="false">https://blog.finxter.com/?p=1422783</guid>

					<description><![CDATA[<p>Project 01: AgentGPT Description: Created by Asim Shrestha, AgentGPT allows for the assembly, configuration, and deployment of autonomous AI agents right in your browser. Author: Asim Shrestha 🕊️ Twitter: https://twitter.com/asimdotshrestha Project 02: BabyAGI on Slack Description: This project brings BabyAGI to Slack, with each thread representing a unique objective. Its author, Frank Chen, has enabled ... <a title="26 Insane Auto-GPT and Baby AGI Alternatives You Ought to Try in 2023" class="read-more" href="https://blog.finxter.com/26-insane-auto-gpt-and-baby-agi-alternatives-you-ought-to-try-in-2023/" aria-label="Read more about 26 Insane Auto-GPT and Baby AGI Alternatives You Ought to Try in 2023">Read more</a></p>
<p>The post <a href="https://blog.finxter.com/26-insane-auto-gpt-and-baby-agi-alternatives-you-ought-to-try-in-2023/">26 Insane Auto-GPT and Baby AGI Alternatives You Ought to Try in 2023</a> appeared first on <a href="https://blog.finxter.com">Be on the Right Side of Change</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<h2 class="wp-block-heading">Project 01: <a rel="noreferrer noopener" href="https://github.com/reworkd/AgentGPT" target="_blank">AgentGPT</a></h2>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1024" height="863" src="https://blog.finxter.com/wp-content/uploads/2023/06/image-77-1024x863.png" alt="" class="wp-image-1422835" srcset="https://blog.finxter.com/wp-content/uploads/2023/06/image-77-1024x863.png 1024w, https://blog.finxter.com/wp-content/uploads/2023/06/image-77-300x253.png 300w, https://blog.finxter.com/wp-content/uploads/2023/06/image-77-768x648.png 768w, https://blog.finxter.com/wp-content/uploads/2023/06/image-77.png 1390w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p><strong>Description</strong>: Created by Asim Shrestha, AgentGPT allows for the assembly, configuration, and deployment of autonomous AI agents right in your browser.</p>



<p>Author: <a href="https://github.com/asim-shrestha">Asim Shrestha</a></p>



<p><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f54a.png" alt="🕊" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Twitter: <a href="https://twitter.com/asimdotshrestha">https://twitter.com/asimdotshrestha</a></p>



<h2 class="wp-block-heading">Project 02: <a rel="noreferrer noopener" href="https://twitter.com/frankc/status/1645898312594382848" target="_blank">BabyAGI on Slack</a></h2>



<p><strong>Description</strong>: This project brings BabyAGI to Slack, with each thread representing a unique objective. Its author, Frank Chen, has enabled seamless integration with a popular communication platform.</p>



<p>Author: <a href="https://frankc.net">Frank Chen</a></p>



<p><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f54a.png" alt="🕊" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Twitter: <a href="https://twitter.com/frankc">https://twitter.com/frankc</a></p>



<h2 class="wp-block-heading">Project 03: <a rel="noreferrer noopener" href="https://github.com/idosal/AgentLLM" target="_blank">AgentLLM</a></h2>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="351" src="https://blog.finxter.com/wp-content/uploads/2023/06/image-79-1024x351.png" alt="" class="wp-image-1422840" srcset="https://blog.finxter.com/wp-content/uploads/2023/06/image-79-1024x351.png 1024w, https://blog.finxter.com/wp-content/uploads/2023/06/image-79-300x103.png 300w, https://blog.finxter.com/wp-content/uploads/2023/06/image-79-768x263.png 768w, https://blog.finxter.com/wp-content/uploads/2023/06/image-79.png 1072w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>
</div>


<p><strong>Description</strong>: AgentLLM, developed by Ido Salomon, employs a browser-native LLM instead of ChatGPT, providing a unique approach to autonomous AI agents.</p>



<p>Author: <a href="https://github.com/idosal">Ido Salomon</a></p>



<p><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f54a.png" alt="🕊" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Twitter: <a href="https://twitter.com/idosal1">https://twitter.com/idosal1</a></p>



<h2 class="wp-block-heading">Project 04: <a rel="noreferrer noopener" href="https://github.com/oliveirabruno01/babyagi-asi" target="_blank">BabyAGI-asi</a></h2>



<p><strong>Description</strong>: Run arbitrary Python code to perform tasks, creating routines for <code>pyautogui</code>, <a rel="noreferrer noopener" href="https://blog.finxter.com/python-web-scraping-from-url-to-csv-in-no-time/" data-type="post" data-id="1313474" target="_blank">web scraping</a>, and even controlling its memory.</p>



<p>Author: <a href="https://github.com/oliveirabruno01">Bruno De Oliveira</a></p>



<p><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f54a.png" alt="🕊" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Twitter: <a href="https://twitter.com/LatentLich">https://twitter.com/LatentLich</a></p>



<h2 class="wp-block-heading">Project 05: <a rel="noreferrer noopener" href="https://github.com/eumemic/ai-legion" target="_blank">ai-legion</a></h2>



<p><strong>Description</strong>: Similar in spirit to <a href="https://blog.finxter.com/30-creative-autogpt-use-cases-to-make-money-online/" data-type="post" data-id="1326618" target="_blank" rel="noreferrer noopener">AutoGPT</a> and <a href="https://blog.finxter.com/task-driven-autonomous-agent-baby-agis-powerful-engine/" data-type="post" data-id="1385506" target="_blank" rel="noreferrer noopener">Baby AGI</a>, but written in the superior language that is TypeScript (<em>Author Description</em>).</p>



<p>Author: <a href="https://github.com/eumemic">eumemic</a></p>



<p><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f54a.png" alt="🕊" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Twitter: <a href="https://twitter.com/dysmemic">https://twitter.com/dysmemic</a></p>



<h2 class="wp-block-heading">Project 06: <a rel="noreferrer noopener" href="https://github.com/pj4533/yourgoal" target="_blank">yourgoal</a></h2>


<div class="wp-block-image">
<figure class="aligncenter size-full"><img loading="lazy" decoding="async" width="600" height="350" src="https://blog.finxter.com/wp-content/uploads/2023/06/image-80.png" alt="" class="wp-image-1422841" srcset="https://blog.finxter.com/wp-content/uploads/2023/06/image-80.png 600w, https://blog.finxter.com/wp-content/uploads/2023/06/image-80-300x175.png 300w" sizes="auto, (max-width: 600px) 100vw, 600px" /></figure>
</div>


<p><strong>Description</strong>: <a href="https://blog.finxter.com/swift-developer-income-and-opportunity/" data-type="post" data-id="189358" target="_blank" rel="noreferrer noopener">Swift (programming language)</a> implementation of BabyAGI.</p>



<p>Author: <a href="https://github.com/pj4533">PJ Gray</a></p>



<p><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f54a.png" alt="🕊" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Twitter: <a href="https://twitter.com/pj4533">https://twitter.com/pj4533</a></p>



<h2 class="wp-block-heading">Project 07: <a rel="noreferrer noopener" href="https://replit.com/@Skirano/BabyAGIChatGPT?v=1" target="_blank">BabyAGIChatGPT</a></h2>



<p><strong>Description</strong>: Plug-in to run autonomous agents directly within ChatGPT</p>



<p>Author: <a href="https://replit.com/@Skirano">Pietro Schirano</a></p>



<p><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f54a.png" alt="🕊" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Twitter: <a href="https://twitter.com/skirano">https://twitter.com/skirano</a></p>



<h2 class="wp-block-heading">Project 08: <a rel="noreferrer noopener" href="https://www.cognosys.ai/" target="_blank">Cognosys</a></h2>



<figure class="wp-block-video aligncenter"><video controls src="https://framerusercontent.com/modules/assets/djGZ4CnQuCpF18U3jjORyHqvR4w~HRSMTnEPIVe4jqqE5fszMdm7EUpVbN0vYwnQEfmBdDc.mp4"></video></figure>



<p><strong>Description</strong>: A web-based version of AutoGPT or Baby AGI.</p>



<p>Author: <a href="https://github.com/sullyo">Sully Omarr</a></p>



<p><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f54a.png" alt="🕊" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Twitter: <a href="https://twitter.com/SullyOmarr">https://twitter.com/SullyOmarr</a></p>



<h2 class="wp-block-heading">Project 09: <a rel="noreferrer noopener" href="https://godmode.space/" target="_blank">Godmode</a></h2>


<div class="wp-block-image">
<figure class="aligncenter size-full"><img loading="lazy" decoding="async" width="1006" height="721" src="https://blog.finxter.com/wp-content/uploads/2023/06/image-71.png" alt="" class="wp-image-1422808" srcset="https://blog.finxter.com/wp-content/uploads/2023/06/image-71.png 1006w, https://blog.finxter.com/wp-content/uploads/2023/06/image-71-300x215.png 300w, https://blog.finxter.com/wp-content/uploads/2023/06/image-71-768x550.png 768w" sizes="auto, (max-width: 1006px) 100vw, 1006px" /></figure>
</div>


<p><strong>Description</strong>: A web-based version of AutoGPT or Baby AGI.</p>



<p>Authors: <a href="https://twitter.com/_Lonis_">Lonis</a>, <a href="https://github.com/FOLLGAD">Emil Ahlbäck</a>, and <a href="https://twitter.com/da_fant">fant</a></p>



<p><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f54a.png" alt="🕊" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Twitter: <a href="https://twitter.com/SullyOmarr">https://twitter.com/SullyOmarr</a></p>



<p class="has-base-2-background-color has-background"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4a1.png" alt="💡" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>Recommended</strong>: <a href="https://blog.finxter.com/autogpt-vs-babyagi-comparing-two-powerful-autonomous-agents-built-on-openai/" data-type="post" data-id="1383576" target="_blank" rel="noreferrer noopener">AutoGPT vs BabyAGI: Comparing OpenAI-Based Autonomous Agents</a></p>



<h2 class="wp-block-heading">Project 10: <a rel="noreferrer noopener" href="https://alphakit.ai/" target="_blank">alphakit</a></h2>



<p><strong>Description</strong>: A team of autonomous AI agents for everyone</p>



<p>Author: <a href="https://github.com/andrewyu0">Andrew Yu</a></p>



<p><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f54a.png" alt="🕊" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Twitter: <a href="https://twitter.com/andrewcyu">https://twitter.com/andrewcyu</a></p>



<h2 class="wp-block-heading">Project 11: <a rel="noreferrer noopener" href="https://github.com/XpressAI/xai-gpt-agent-toolkit" target="_blank">Xircuits</a></h2>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img decoding="async" src="https://github.com/XpressAI/xai-gpt-agent-toolkit/blob/main/demo.gif?raw=true" alt=""/></figure>
</div>


<p><strong>Description</strong>: A comprehensive toolkit for experimenting with and creating BabyAGI and Auto-GPT-style Agents.</p>



<p>Author: <a href="https://github.com/wmeddie">Eduardo Gonzalez</a></p>



<p><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f54a.png" alt="🕊" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Twitter: <a href="https://twitter.com/wm_eddie">https://twitter.com/wm_eddie</a></p>



<h2 class="wp-block-heading">Project 13: <a rel="noreferrer noopener" href="https://github.com/ericciarla/babyagijs" target="_blank">babyagijs</a></h2>



<p><strong>Description</strong>: Eric Ciarla brings BabyAGI to the JavaScript community with his project.</p>



<p>Author: <a href="https://github.com/ericciarla">Eric Ciarla</a></p>



<p><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f54a.png" alt="🕊" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Twitter: <a href="https://twitter.com/ericciarla">https://twitter.com/ericciarla</a></p>



<h2 class="wp-block-heading">Project 14: <a rel="noreferrer noopener" href="https://github.com/seanpixel/Teenage-AGI" target="_blank">Teenage-AGI</a></h2>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="840" src="https://blog.finxter.com/wp-content/uploads/2023/06/image-72-1024x840.png" alt="" class="wp-image-1422812" srcset="https://blog.finxter.com/wp-content/uploads/2023/06/image-72-1024x840.png 1024w, https://blog.finxter.com/wp-content/uploads/2023/06/image-72-300x246.png 300w, https://blog.finxter.com/wp-content/uploads/2023/06/image-72-768x630.png 768w, https://blog.finxter.com/wp-content/uploads/2023/06/image-72.png 1062w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>
</div>


<p><strong>Description</strong>: Sean Pixel&#8217;s project uses OpenAI and Pinecone to give memory to an AI agent and allows it to &#8220;think&#8221; before acting. Inspired by several Auto-GPT-related projects (predominantly Baby AGI) and the <a rel="noreferrer noopener" href="https://arxiv.org/pdf/2304.03442.pdf" data-type="URL" data-id="https://arxiv.org/pdf/2304.03442.pdf" target="_blank">paper</a> <em>&#8220;Generative Agents: Interactive Simulacra of Human Behavior&#8221;</em>.</p>



<p>Author: <a href="https://github.com/seanpixel">Sean Pixel</a></p>



<p><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f54a.png" alt="🕊" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Twitter: <a href="https://twitter.com/sean_pixel">https://twitter.com/sean_pixel</a></p>



<h2 class="wp-block-heading">Project 15: <a rel="noreferrer noopener" href="https://github.com/nferraz/babyagi-perl" target="_blank">babyagi-perl</a></h2>



<p><strong>Description</strong>: BabyAGI for the <a href="https://blog.finxter.com/perl-developer-income-and-opportunity/" data-type="post" data-id="206108" target="_blank" rel="noreferrer noopener">Perl programming language</a>.</p>



<p>Author: <a href="https://github.com/nelson-ferraz">Nelson Ferraz</a></p>



<h2 class="wp-block-heading">Project 16: <a rel="noreferrer noopener" href="https://github.com/lgrammel/gptagent.js" target="_blank">gptagent.js</a></h2>



<p><strong>Description</strong>: A composable and extensible framework for creating AI agents with TypeScript/JavaScript.</p>



<p>Author: <a href="https://github.com/lgrammel">Lars Grammel</a></p>



<p><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f54a.png" alt="🕊" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Twitter: <a href="https://twitter.com/lgrammel">https://twitter.com/lgrammel</a></p>



<h2 class="wp-block-heading">Project 17: <a rel="noreferrer noopener" href="https://github.com/dory111111/babyagi-streamlit" target="_blank">babyagi-streamlit</a></h2>



<figure class="wp-block-video"><video controls src="https://user-images.githubusercontent.com/5876695/230781482-cb03a6b2-b2c9-49c8-ab6d-0066c0d82fd6.mov"></video></figure>



<p><strong>Description</strong>: Streamlit web app to make it more accessible.</p>



<p>Author: <a href="https://github.com/dory111111">Dory</a></p>



<p><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f54a.png" alt="🕊" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Twitter: <a href="https://twitter.com/dory111111">https://twitter.com/dory111111</a></p>



<h2 class="wp-block-heading">Project 18: <a rel="noreferrer noopener" href="https://www.doanythingmachine.com/" target="_blank">Do Anything Machine</a></h2>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="974" height="1024" src="https://blog.finxter.com/wp-content/uploads/2023/06/image-73-974x1024.png" alt="" class="wp-image-1422816" srcset="https://blog.finxter.com/wp-content/uploads/2023/06/image-73-974x1024.png 974w, https://blog.finxter.com/wp-content/uploads/2023/06/image-73-285x300.png 285w, https://blog.finxter.com/wp-content/uploads/2023/06/image-73-768x807.png 768w, https://blog.finxter.com/wp-content/uploads/2023/06/image-73.png 1074w" sizes="auto, (max-width: 974px) 100vw, 974px" /></figure>
</div>


<p><strong>Description</strong>: Helps you keep track of your tasks, prioritize them, and allows you to deploy AI agents to get your work done for you.</p>



<p>Author: Garrett Scott</p>



<p><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f54a.png" alt="🕊" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Twitter: <a href="https://twitter.com/thegarrettscott">https://twitter.com/thegarrettscott</a></p>



<h2 class="wp-block-heading">Project 19: <a rel="noreferrer noopener" href="https://github.com/jina-ai/langchain-serve#-babyagi-as-a-service" target="_blank">Babyagi-as-a-service</a></h2>



<p>Description: Integrate babyagi with your own applications &#8211; thanks to langchain-serve with one simple command &#8211; 𝐥𝐜-𝐬𝐞𝐫𝐯𝐞 𝐝𝐞𝐩𝐥𝐨𝐲 𝐛𝐚𝐛𝐲𝐚𝐠𝐢</p>



<p>Author: <a href="https://github.com/deepankarm">Deepankar Mahapatro</a></p>



<p><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f54a.png" alt="🕊" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Twitter: <a href="https://twitter.com/_deepankarm">https://twitter.com/_deepankarm</a>_</p>



<h2 class="wp-block-heading">Project 20: <a rel="noreferrer noopener" href="https://github.com/dzoba/gptrpg" target="_blank">gptrpg</a></h2>


<div class="wp-block-image">
<figure class="aligncenter size-full"><img loading="lazy" decoding="async" width="800" height="800" src="https://blog.finxter.com/wp-content/uploads/2023/06/image-74.png" alt="" class="wp-image-1422817" srcset="https://blog.finxter.com/wp-content/uploads/2023/06/image-74.png 800w, https://blog.finxter.com/wp-content/uploads/2023/06/image-74-300x300.png 300w, https://blog.finxter.com/wp-content/uploads/2023/06/image-74-150x150.png 150w, https://blog.finxter.com/wp-content/uploads/2023/06/image-74-768x768.png 768w" sizes="auto, (max-width: 800px) 100vw, 800px" /></figure>
</div>


<p><strong>Description</strong>: Chris Dzoba creates a simple RPG-like environment for an LLM-enabled AI Agent to exist in.</p>



<p>Author: <a href="https://github.com/dzoba">Chris Dzoba</a></p>



<p><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f54a.png" alt="🕊" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Twitter: <a href="https://twitter.com/ChrisDzoba">https://twitter.com/ChrisDzoba</a>_</p>



<h2 class="wp-block-heading">Project 21: <a rel="noreferrer noopener" href="https://github.com/context-labs/babyagi-ts" target="_blank">BabyAGI-ts</a></h2>



<p><strong>Description</strong>: Port BabyAGI from Python to TypeScript and provide a friendly CLI tool that can be installed as a global NPM module</p>



<p>Author: <a href="https://github.com/samheutmaker">Sam Hogan</a></p>



<p><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f54a.png" alt="🕊" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Twitter: <a href="https://twitter.com/0xSamHogan">https://twitter.com/0xSamHogan</a></p>



<h2 class="wp-block-heading">Project 22: <a rel="noreferrer noopener" href="https://github.com/adamcohenhillel/LLMitlessAPI" target="_blank">LLMitlessAPI</a></h2>



<p><strong>Description</strong>: API with one endpoint that does everything (literally).</p>



<p>Author: <a href="https://github.com/adamcohenhillel">Adam Cohen Hillel</a></p>



<p><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f54a.png" alt="🕊" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Twitter: <a href="https://twitter.com/adamcohenhillel">https://twitter.com/adamcohenhillel</a></p>



<h2 class="wp-block-heading">Project 23: <a rel="noreferrer noopener" href="https://github.com/webgrip/PuttyGPT" target="_blank">PuttyGPT</a></h2>



<p><strong>Description</strong>: Ryan William Grippeling&#8217;s project focuses on integrating numerous AI ideas into a cohesive whole. It&#8217;s still in its early stages but promises to be an exciting development.</p>



<p>Author: <a href="https://github.com/ryangr0">Ryan William Grippeling</a></p>



<p><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f54a.png" alt="🕊" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Twitter: <a href="https://twitter.com/ryangrippeling">https://twitter.com/ryangrippeling</a></p>



<h2 class="wp-block-heading">Project 24: <a href="https://github.com/chippr-robotics/chippr-agi">Chippr-AGI</a></h2>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="474" src="https://blog.finxter.com/wp-content/uploads/2023/06/image-75-1024x474.png" alt="" class="wp-image-1422826" srcset="https://blog.finxter.com/wp-content/uploads/2023/06/image-75-1024x474.png 1024w, https://blog.finxter.com/wp-content/uploads/2023/06/image-75-300x139.png 300w, https://blog.finxter.com/wp-content/uploads/2023/06/image-75-768x356.png 768w, https://blog.finxter.com/wp-content/uploads/2023/06/image-75.png 1065w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>
</div>


<p><strong>Description</strong>: Cody Burns&#8217; project is an open-source framework that uses AI models to automate task creation and prioritization. It&#8217;s built on NodeJS, Redis, and OpenAI/LLAMA.</p>



<p>Author: <a href="https://github.com/realcodywburns">Cody Burns</a></p>



<p><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f54a.png" alt="🕊" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Twitter: <a href="https://twitter.com/DontPanicBurns">https://twitter.com/DontPanicBurns</a></p>



<h2 class="wp-block-heading">Project 25: <a rel="noreferrer noopener" href="https://github.com/Josh-XT/Agent-LLM" target="_blank">Agent-LLM</a></h2>



<p><strong>Description</strong>: Josh XT&#8217;s Agent-LLM is a dynamic AI task management assistant with adaptive memory, web browsing, code evaluation, and a versatile plugin system for seamless integration with various AI providers.</p>



<p>Author: <a href="https://github.com/Josh-XT">Josh XT</a></p>



<p><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f54a.png" alt="🕊" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Twitter: <a href="https://twitter.com/Josh_XT">https://twitter.com/Josh_XT</a></p>



<h2 class="wp-block-heading">Project 26: <a rel="noreferrer noopener" href="https://github.com/sathyarajv/sharpagi" target="_blank">sharpagi</a></h2>



<p><strong>Description</strong>: C# dotnet implementation of BabyAGI.</p>



<p>Author: <a href="https://github.com/sathyarajv">Sathyaraj Vadivel</a></p>



<p><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f54a.png" alt="🕊" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Twitter: <a href="https://twitter.com/sathyarajv">https://twitter.com/sathyarajv</a></p>



<h2 class="wp-block-heading">Project 27: <a rel="noreferrer noopener" href="https://github.com/bigsky77/twitter-agent" target="_blank">twitter-agent<img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f423.png" alt="🐣" class="wp-smiley" style="height: 1em; max-height: 1em;" /></a></h2>


<div class="wp-block-image">
<figure class="aligncenter size-full"><img loading="lazy" decoding="async" width="805" height="342" src="https://blog.finxter.com/wp-content/uploads/2023/06/image-76.png" alt="" class="wp-image-1422828" srcset="https://blog.finxter.com/wp-content/uploads/2023/06/image-76.png 805w, https://blog.finxter.com/wp-content/uploads/2023/06/image-76-300x127.png 300w, https://blog.finxter.com/wp-content/uploads/2023/06/image-76-768x326.png 768w" sizes="auto, (max-width: 805px) 100vw, 805px" /></figure>
</div>


<p><strong>Description</strong>: Twitter-Agent is an autonomous AI-powered agent for interacting directly with the Twitter API.</p>



<p>Author: <a href="https://github.com/bigsky77" target="_blank" rel="noreferrer noopener">BigSky</a></p>



<p><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f54a.png" alt="🕊" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Twitter: <a href="https://twitter.com/bigsky_7">https://twitter.com/bigsky_7</a></p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<p>This article draws projects from <a rel="noreferrer noopener" href="https://github.com/yoheinakajima/babyagi/blob/main/docs/inspired-projects.md" data-type="URL" data-id="https://github.com/yoheinakajima/babyagi/blob/main/docs/inspired-projects.md" target="_blank">this</a> BabyAGI GitHub repository (source). Check it out!</p>



<p class="has-base-2-background-color has-background"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f423.png" alt="🐣" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>Recommended</strong>: <a href="https://blog.finxter.com/autogpt-vs-babyagi-comparing-two-powerful-autonomous-agents-built-on-openai/" data-type="post" data-id="1383576" target="_blank" rel="noreferrer noopener">AutoGPT vs BabyAGI: Comparing OpenAI-Based Autonomous Agents</a></p>



<h2 class="wp-block-heading">OpenAI Glossary Cheat Sheet (100% Free PDF Download) <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f447.png" alt="👇" class="wp-smiley" style="height: 1em; max-height: 1em;" /></h2>



<p>Finally, check out our free cheat sheet on OpenAI terminology, many Finxters have told me they love it! <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/2665.png" alt="♥" class="wp-smiley" style="height: 1em; max-height: 1em;" /> </p>


<div class="wp-block-image">
<figure class="aligncenter size-full"><a href="https://blog.finxter.com/openai-glossary/" target="_blank" rel="noreferrer noopener"><img loading="lazy" decoding="async" width="720" height="960" src="https://blog.finxter.com/wp-content/uploads/2023/04/Finxter_OpenAI_Glossary-1.jpg" alt="" class="wp-image-1278472" srcset="https://blog.finxter.com/wp-content/uploads/2023/04/Finxter_OpenAI_Glossary-1.jpg 720w, https://blog.finxter.com/wp-content/uploads/2023/04/Finxter_OpenAI_Glossary-1-225x300.jpg 225w" sizes="auto, (max-width: 720px) 100vw, 720px" /></a></figure>
</div>


<p class="has-base-2-background-color has-background"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4a1.png" alt="💡" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>Recommended</strong>: <a href="https://blog.finxter.com/openai-glossary/" data-type="post" data-id="1276420" target="_blank" rel="noreferrer noopener">OpenAI Terminology Cheat Sheet (Free Download PDF)</a></p>
<p>The post <a href="https://blog.finxter.com/26-insane-auto-gpt-and-baby-agi-alternatives-you-ought-to-try-in-2023/">26 Insane Auto-GPT and Baby AGI Alternatives You Ought to Try in 2023</a> appeared first on <a href="https://blog.finxter.com">Be on the Right Side of Change</a>.</p>
]]></content:encoded>
					
		
		<enclosure url="https://user-images.githubusercontent.com/5876695/230781482-cb03a6b2-b2c9-49c8-ab6d-0066c0d82fd6.mov" length="17461276" type="video/quicktime" />
<enclosure url="https://framerusercontent.com/modules/assets/djGZ4CnQuCpF18U3jjORyHqvR4w~HRSMTnEPIVe4jqqE5fszMdm7EUpVbN0vYwnQEfmBdDc.mp4" length="9716586" type="video/mp4" />

			</item>
		<item>
		<title>Top 7 Ways to Use Auto-GPT Tools in Your Browser</title>
		<link>https://blog.finxter.com/auto-gpt-in-your-browser-web-interface/</link>
		
		<dc:creator><![CDATA[Chris]]></dc:creator>
		<pubDate>Sun, 28 May 2023 06:48:51 +0000</pubDate>
				<category><![CDATA[Artificial Intelligence]]></category>
		<category><![CDATA[AutoGPT]]></category>
		<category><![CDATA[Automation]]></category>
		<category><![CDATA[ChatGPT]]></category>
		<category><![CDATA[Large Language Model (LLM)]]></category>
		<category><![CDATA[Machine Learning]]></category>
		<category><![CDATA[OpenAI]]></category>
		<guid isPermaLink="false">https://blog.finxter.com/?p=1397097</guid>

					<description><![CDATA[<p>Installing Auto-GPT is not simple, especially if you&#8217;re not a coder, because you need to set up Docker and do all the tech stuff. And even if you&#8217;re a coder you may not want to go through the hassle. In this article, I&#8217;ll show you some easy Auto-GPT web interfaces that&#8217;ll make the job easier! ... <a title="Top 7 Ways to Use Auto-GPT Tools in Your Browser" class="read-more" href="https://blog.finxter.com/auto-gpt-in-your-browser-web-interface/" aria-label="Read more about Top 7 Ways to Use Auto-GPT Tools in Your Browser">Read more</a></p>
<p>The post <a href="https://blog.finxter.com/auto-gpt-in-your-browser-web-interface/">Top 7 Ways to Use Auto-GPT Tools in Your Browser</a> appeared first on <a href="https://blog.finxter.com">Be on the Right Side of Change</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p><em><a rel="noreferrer noopener" href="https://blog.finxter.com/installing-auto-gpt-any-other-way-is-dangerous/" data-type="post" data-id="1381013" target="_blank">Installing Auto-GPT</a> is not simple, especially if you&#8217;re not a coder, because you need to set up Docker and do all the tech stuff. And even if you&#8217;re a coder you may not want to go through the hassle. In this article, I&#8217;ll show you some easy Auto-GPT web interfaces that&#8217;ll make the job easier!</em></p>



<h2 class="wp-block-heading">Tool #1 &#8211; Auto-GPT on Hugging Face</h2>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1024" height="627" src="https://blog.finxter.com/wp-content/uploads/2023/05/image-426-1024x627.png" alt="" class="wp-image-1397133" srcset="https://blog.finxter.com/wp-content/uploads/2023/05/image-426-1024x627.png 1024w, https://blog.finxter.com/wp-content/uploads/2023/05/image-426-300x184.png 300w, https://blog.finxter.com/wp-content/uploads/2023/05/image-426-768x470.png 768w, https://blog.finxter.com/wp-content/uploads/2023/05/image-426-1536x940.png 1536w, https://blog.finxter.com/wp-content/uploads/2023/05/image-426.png 1585w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p>Hugging Face user aliabid94 created an Auto-GPT web interface (100% browser-based) where you can put in your OpenAI API key and try out Auto-GPT in seconds.</p>



<p>To get an OpenAI API key, check out <a rel="noreferrer noopener" href="https://blog.finxter.com/openai-api-or-how-i-made-my-python-code-intelligent/" data-type="URL" data-id="https://blog.finxter.com/openai-api-or-how-i-made-my-python-code-intelligent/" target="_blank">this tutorial on the Finxter blog</a> or visit your paid OpenAI account directly <a rel="noreferrer noopener" href="https://platform.openai.com/account/api-keys" data-type="URL" data-id="https://platform.openai.com/account/api-keys" target="_blank">here</a>.</p>



<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="1024" height="569" src="https://blog.finxter.com/wp-content/uploads/2023/05/image-428.png" alt="" class="wp-image-1397138" srcset="https://blog.finxter.com/wp-content/uploads/2023/05/image-428.png 1024w, https://blog.finxter.com/wp-content/uploads/2023/05/image-428-300x167.png 300w, https://blog.finxter.com/wp-content/uploads/2023/05/image-428-768x427.png 768w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p>The example shows the Auto-GPT run of an Entrepreneur-GPT that is designed to grow your Twitter account. <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4b0.png" alt="💰" class="wp-smiley" style="height: 1em; max-height: 1em;" /><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f601.png" alt="😁" class="wp-smiley" style="height: 1em; max-height: 1em;" /> </p>



<h2 class="wp-block-heading">Tool #2 &#8211; AutoGPTJS.com</h2>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1024" height="738" src="https://blog.finxter.com/wp-content/uploads/2023/05/image-429-1024x738.png" alt="" class="wp-image-1397140" srcset="https://blog.finxter.com/wp-content/uploads/2023/05/image-429-1024x738.png 1024w, https://blog.finxter.com/wp-content/uploads/2023/05/image-429-300x216.png 300w, https://blog.finxter.com/wp-content/uploads/2023/05/image-429-768x554.png 768w, https://blog.finxter.com/wp-content/uploads/2023/05/image-429.png 1516w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p>I haven&#8217;t tried <a rel="noreferrer noopener" href="https://autogptjs.com/" data-type="URL" data-id="https://autogptjs.com/" target="_blank">autogptjs.com</a> but the user interface looks really compelling and easy to use. Again, you need to enter your OpenAI API key and you should create a new one and revoke it after use. Who knows where the keys are really stored?</p>



<p>Well, this project looks trustworthy as it&#8217;s also available on <a href="https://github.com/zabirauf/AutoGPT.js//" data-type="URL" data-id="https://github.com/zabirauf/AutoGPT.js//" target="_blank" rel="noreferrer noopener">GitHub</a>.</p>



<h2 class="wp-block-heading">Tool #3 &#8211; AgentGPT</h2>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1024" height="906" src="https://blog.finxter.com/wp-content/uploads/2023/05/image-430-1024x906.png" alt="" class="wp-image-1397147" srcset="https://blog.finxter.com/wp-content/uploads/2023/05/image-430-1024x906.png 1024w, https://blog.finxter.com/wp-content/uploads/2023/05/image-430-300x266.png 300w, https://blog.finxter.com/wp-content/uploads/2023/05/image-430-768x680.png 768w, https://blog.finxter.com/wp-content/uploads/2023/05/image-430.png 1323w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p><a href="https://agentgpt.reworkd.ai/" data-type="URL" data-id="https://agentgpt.reworkd.ai/" target="_blank" rel="noreferrer noopener">AgentGPT</a> is an easy-to-use browser based autonomous agent based on GPT-3.5 and GPT-4. It is similar to Auto-GPT but uses its <a href="https://docs.reworkd.ai/roadmap" data-type="URL" data-id="https://docs.reworkd.ai/roadmap" target="_blank" rel="noreferrer noopener">own repository</a> and code base. </p>



<p>I have written a <a href="https://blog.finxter.com/auto-gpt-vs-agent-gpt-whos-winning-in-autonomous-llm-agents/" data-type="post" data-id="1393239" target="_blank" rel="noreferrer noopener">detailed comparison between Auto-GPT and AgentGPT on the Finxter blog</a> but the TLDR is that it&#8217;s easier to setup and use at the cost of being much more expensive and less suitable for long-running tasks.</p>



<h2 class="wp-block-heading">Tool #4 &#8211; AutoGPT UI with Nuxt.js</h2>


<div class="wp-block-image">
<figure class="aligncenter size-large"><a href="https://github.com/neuronic-ai/autogpt-ui" target="_blank" rel="noreferrer noopener"><img loading="lazy" decoding="async" width="1024" height="552" src="https://blog.finxter.com/wp-content/uploads/2023/05/image-425-1024x552.png" alt="" class="wp-image-1397108" srcset="https://blog.finxter.com/wp-content/uploads/2023/05/image-425-1024x552.png 1024w, https://blog.finxter.com/wp-content/uploads/2023/05/image-425-300x162.png 300w, https://blog.finxter.com/wp-content/uploads/2023/05/image-425-768x414.png 768w, https://blog.finxter.com/wp-content/uploads/2023/05/image-425.png 1058w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></a></figure>
</div>


<p>AutoGPT UI, built with Nuxt.js, is a user-friendly web tool for managing AutoGPT workspaces. Users can easily upload AI settings and supporting files, adjust AutoGPT settings, and initiate the process via our intuitive GUI. It supports both individual and multi-user workspaces. Its workspace management interface enables easy file handling, allowing drag-and-drop features and seamless interaction with source or generated content.</p>



<p></p>



<h2 class="wp-block-heading">Some More Comments&#8230; <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f447.png" alt="👇" class="wp-smiley" style="height: 1em; max-height: 1em;" /></h2>



<p>Before you go, here are a few additional notes.</p>



<h3 class="wp-block-heading">Token Usage and Revoking Keys</h3>



<p>To access Auto-GPT, you need to use the <a rel="noreferrer noopener" href="https://www.openai.com/api/" target="_blank">OpenAI API</a> key, which is essential for authenticating your requests. The token usage depends on the API calls you make for various tasks. </p>



<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="990" height="352" src="https://blog.finxter.com/wp-content/uploads/2023/05/image-432.png" alt="" class="wp-image-1397167" srcset="https://blog.finxter.com/wp-content/uploads/2023/05/image-432.png 990w, https://blog.finxter.com/wp-content/uploads/2023/05/image-432-300x107.png 300w, https://blog.finxter.com/wp-content/uploads/2023/05/image-432-768x273.png 768w" sizes="auto, (max-width: 990px) 100vw, 990px" /></figure>



<p>You should set a spending limit and revoke your <a rel="noreferrer noopener" href="https://platform.openai.com/account/api-keys" data-type="URL" data-id="https://platform.openai.com/account/api-keys" target="_blank">API keys</a> after putting them in any browser-based Auto-GPT tool. After all, you don&#8217;t know where your API keys will end up so I use a strict one-key-for-one-use policy and revoke all keys directly after use.</p>



<h2 class="wp-block-heading">3 More Tools</h2>



<p>The possibilities with Auto-GPT innovation are vast and ever-expanding. </p>



<p>For instance, researchers and developers are creating new AI tools such as <a href="https://godmode.space/" data-type="URL" data-id="https://godmode.space/">Godmode</a> (I think it&#8217;s based on <a href="https://blog.finxter.com/autogpt-vs-babyagi-comparing-two-powerful-autonomous-agents-built-on-openai/" data-type="post" data-id="1383576" target="_blank" rel="noreferrer noopener">BabyAGI</a>) to easily deploy AI agents directly in the web browser. </p>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="687" src="https://blog.finxter.com/wp-content/uploads/2023/05/image-433-1024x687.png" alt="" class="wp-image-1397171" srcset="https://blog.finxter.com/wp-content/uploads/2023/05/image-433-1024x687.png 1024w, https://blog.finxter.com/wp-content/uploads/2023/05/image-433-300x201.png 300w, https://blog.finxter.com/wp-content/uploads/2023/05/image-433-768x515.png 768w, https://blog.finxter.com/wp-content/uploads/2023/05/image-433.png 1318w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>
</div>


<p>With its potential to grow and adapt, Auto-GPT is poised to make an impact on numerous industries, driving further innovation and advancements in AI applications.</p>



<p><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f310.png" alt="🌐" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <a href="https://chrome.google.com/webstore/detail/autogpt/mamkpgmndpghcbjpklkbpiafhnonehle" target="_blank" rel="noreferrer noopener">AutoGPT Chrome extension</a> is another notable add-on, providing an easily accessible interface for users.</p>


<div class="wp-block-image">
<figure class="aligncenter size-full"><img loading="lazy" decoding="async" width="640" height="400" src="https://blog.finxter.com/wp-content/uploads/2023/05/image-434.png" alt="" class="wp-image-1397174" srcset="https://blog.finxter.com/wp-content/uploads/2023/05/image-434.png 640w, https://blog.finxter.com/wp-content/uploads/2023/05/image-434-300x188.png 300w" sizes="auto, (max-width: 640px) 100vw, 640px" /></figure>
</div>


<p>Yesterday I found a new tool called <a rel="noreferrer noopener" href="https://blog.finxter.com/auto-gpt-vs-jarvis-hugginggpt-one-bot-to-rule-them-all/" data-type="URL" data-id="https://blog.finxter.com/auto-gpt-vs-jarvis-hugginggpt-one-bot-to-rule-them-all/" target="_blank">JARVIS (HuggingGPT)</a>, named after the J.A.R.V.I.S. artificial intelligence from Ironman, that is an Auto-GPT alternative created by Microsoft research that uses not only <a href="https://blog.finxter.com/10-high-iq-things-gpt-4-can-do-that-gpt-3-5-cant/" data-type="post" data-id="1257087" target="_blank" rel="noreferrer noopener">GPT-3.5 and GPT-4</a> but other <a href="https://blog.finxter.com/6-new-ai-projects-based-on-llms-and-openai/" data-type="post" data-id="1320406" target="_blank" rel="noreferrer noopener">LLMs</a> as well and is able to generate multimedia output such as audio and images (<a href="https://blog.finxter.com/python-openai-generate-image-with-dall-e/" data-type="post" data-id="1317762" target="_blank" rel="noreferrer noopener">DALL-E</a>). Truly mindblowing times we&#8217;re living in. </p>



<p class="has-base-2-background-color has-background"><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f916.png" alt="🤖" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <strong>Recommended</strong>: <a href="https://blog.finxter.com/auto-gpt-vs-jarvis-hugginggpt-one-bot-to-rule-them-all/" data-type="post" data-id="1395308" target="_blank" rel="noreferrer noopener">Auto-GPT vs Jarvis HuggingGPT: One Bot to Rule Them All</a></p>
<p>The post <a href="https://blog.finxter.com/auto-gpt-in-your-browser-web-interface/">Top 7 Ways to Use Auto-GPT Tools in Your Browser</a> appeared first on <a href="https://blog.finxter.com">Be on the Right Side of Change</a>.</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/?utm_source=w3tc&utm_medium=footer_comment&utm_campaign=free_plugin

Page Caching using Disk: Enhanced 
Minified using Disk

Served from: blog.finxter.com @ 2026-06-18 22:40:47 by W3 Total Cache
-->