Skip to content

Releases: TransformerOptimus/SuperAGI

v0.0.14

16 Jan 14:21
7411a01
Compare
Choose a tag to compare

✨SuperAGI v0.0.14✨

🚀 Enhanced Local LLM Support with Multi-GPU 🎉

New Feature Highlights 🌟

⚙️ Local Large Language Model (LLM) Integration:

  • SuperAGI now supports the use of local large language models, allowing users to leverage their own models seamlessly within the SuperAGI framework.
  • Easily configure and integrate your preferred LLMs for enhanced customization and control over your AI agents.

⚡️ Multi-GPU Support:

  • SuperAGI now provides multi-GPU support for improved performance and scalability.

How to Use

To enable Local Large Language Model (LLM) with Multi-GPU support, follow these simple steps:

  1. LLM Integration:
    • Add your model path in the celery and backend volumes in the docker-compose-gpu.yml file.
    • Run the command:
      docker compose -f docker-compose-gpu.yml up --build
    • Open localhost:3000 in your browser.
    • Add a local LLM model from the model section.
    • Use the added model for running your agents.

What’s Changed

v0.0.13

27 Sep 16:10
6c5569a
Compare
Choose a tag to compare

✨SuperAGI v0.0.13✨

⚡️SuperAGI Client libraries, 🌐 Improved error-handling, and ⏯️ Wait-block for workflows

Improvements to the Core ⚙

⏯️ Added wait block for workflows:

Users can now add a waiting period into their workflows so that the agent pauses and waits for a specified duration before moving on to the next step. The Wait block is a simple single-step change in the "workflow_seed.py" file in the superagi>agent folder and doesn't require any other changes.

🌐 Improved error handling for OpenAI errors:

SuperAGI will now display errors like rate limits, authentication failures, exceeded quotas etc. from OpenAI directly on the frontend so users can troubleshoot easily.

⚡️SuperAGI Client Libraries

Added SuperAGI SDK Client Libraries in Python and NodeJS to allow developers to easily create, manage, and run autonomous agents using the SuperAGI framework.

Simply pip install or npm install to start using!

Python SDK: https://github.com/TransformerOptimus/SuperAGI-Python-Client
Node SDK:https://github.com/TransformerOptimus/SuperAGI-Node-Client

Read More here: https://superagi.com/docs/SDK/

What’s Changed

v0.0.12

07 Sep 10:53
6ea5b8c
Compare
Choose a tag to compare

✨SuperAGI v0.0.12✨

🪝 Webhooks, 🛠️ 2 new GitHub PR tools, 🐳 One-click docker deploy to Digital Ocean, 📊 Model, Tool and Agent Knowledge consoles & a lot more

Improvements to the Core ⚙

🪝 Added support for user-defined HTTP callback event triggers as Webhooks:

Enabling real-time data synchronization between SuperAGI and external platforms, making them highly efficient in state management.
SuperAGI currently supports the following webhook event triggers:

  • agent_running
  • agent_paused
  • agent_completed
  • agent_terminated
  • agent_max_iterations_reached

🐳 Added support for self-hosting SuperAGI with one-click docker deployment to Digital Ocean:

Users can now deploy a self-hosted SuperAGI instance to Digital Ocean with a single click. Through Digital Ocean, users can run the SuperAGI Docker image directly on a self-hosted cloud machine.

If deployed on digital ocean, then the docker image will auto-update with every release.

🪵 Added Model Console, Tool Console and Knowledge Console:

These consoles are accessible from Model Console, Tools Console and Knowledge Console, allowing users to get a slice of APM at the Model level, Tool level and knowledge embedding level.

  • The Model console displays the performance models, token consumption, LLM calls, Agents usage of the models, and Model logs.
  • The tool console displays the performance of tools, their LLM calls, Agent usage of these tools, and Tool logs.
  • The knowledge Console logs the performance of knowledge embeddings, queries, token consumption, and knowledge logs.

📤 Enabled publishing Agent Template to Marketplace:

Users can now publish their saved agent templates to the marketplace - making them publicly available for everyone to use.

Please note: In order to be able to click on the “Publish Template” button, the user must complete at least one agent run using the agent template. Which will then go through a validation process by SuperAGI and will be publicly listed in the marketplace.

New Tools/ToolKits Added 🛠️

🌐 Github Fetch PR Tool: Agents can use the Github Fetch PR Tool to read the PRs raised within a certain time duration (X seconds/minutes/Hours/days) and then list them according to their PR numbers.

🌐 Github Review PR Tool: Agents can use the Github Review PR Tool to review the code within a given pull request and add the necessary comments for the entire PR.

What’s Changed

New Contributors

v0.0.11

29 Aug 14:58
7118e79
Compare
Choose a tag to compare

✨SuperAGI v0.0.11✨

## 🔗 SuperAGI Public APIs, 💻  Models Marketplace, 📇  Weaviate DB Integration, 🧠 LTM for Thinking Tool & lot more

Improvements to the Core ⚙

🔗 SuperAGI Public APIs are now accessible via Cloud/Local base URLs:

Users can now integrate agents into their applications using our public APIs, accessible via cloud and local base URLs. The current set of APIs allows developers to: Create, pause, resume, and update an AI agent with parameters like name, description, goals, workflow, tools, etc. Start a new agent run or retrieve run details using agent_id and resources like input/output files using run_ids.

To generate the API key, navigate to settings → API keys.

Available APIs can be accessed here: https://documenter.getpostman.com/view/28438662/2s9Xy6rqP5

🤗 New integration with HuggingFace & Replicate to support public/self-hosted models in SuperAGI:

This integration with HuggingFace & Replicate will allow users to bring in public models hosted on HuggingFace/Replicate by entering the exact model name, selecting the provider, and then configuring the required inference endpoint/version ID.

🗿 Added models to SuperAGI marketplace:

Users can also pick any available models directly from the SuperAGI marketplace and configure them with the required Inference endpoint/Version ID.

📇 Added support for Weaviate vector DB for knowledge embeddings:

Users can now integrate their Weaviate Embeddings with SuperAGi’s custom knowledge, and use it in Agent Runs through the Knowledge Search Toolkit. Here’s how to connect with Weaviate: http://superagi.com/docs/Core%20Components/Vector%20Database/weaviate

🧠 Enabled Long-Term Memory support for the Thinking Tool

The Tool memory allows the Thinking tool to access responses from all tools during an agent run. Responses from every tool are broken into text chunks and saved into a Redis vector. The Thinking tool then performs a semantic search for retrieval of these vectorized chunks of previous responses from other tools.

Please note: Currently, only the Thinking Tool can access the Tool Memory.

🛠️ Added JSON support for Tool Configurations:

Users can now input tool configurations in JSON format. This is enabled to support the Google Analytics tool. If you are looking to create a custom tool that requires JSON config input, check out the GA tool example in the SuperAGI-tools repo: https://github.com/TransformerOptimus/SuperAGI-Tools/tree/main/google_analytics

New Tools/ToolKits Added 🛠

🗂️ Google Analytics Toolkit: Allowing agents to use GA Tool to autonomously generate traffic reports for your website/app. Currently, the GA tool supports reporting for the following parameters: countries, pages, and devices against user traffic data like bounce rate, average session durations, and total users.

What’s Changed

New Contributors

  • @AdityaSharma13064 made their first contribution by adding Tool memory LTM in #1007
  • @lalitlj made their first contribution by adding Google Analytics as an external tool in SuperAGI-Tools repo

v0.0.10

12 Aug 06:37
b8e5082
Compare
Choose a tag to compare

✨SuperAGI v0.0.10✨

New Agent Workflows, Agent Summary, Update Toolkits & lot more

Improvements to the Core ⚙

🤖🗺️ Introduced 2 new Agent Workflows:
Users can now select from multiple pre-defined agent workflows from the drop-down at the time of agent provisioning. These agent workflows are a set of sequential instructions that an agent can follow and start executing a series of tasks in a loop using LLM during its run. The newly added Agent workflows are:

  • 💼 Sales Engagement Workflow:
    Fetch prospect details from Apollo.io based on ICP and save them to a CSV file > Read prospect’s data (name, email, company name) from the CSV in the resource manager > Research about each prospect's company > Draft a highly personalized email using the research > Sends the email to respective email ID > Repeat the process for each row in the CSV
  • 🔍 Recruitment Workflow:
    Read the job description file & uploaded CVs from the resource manager > Compare the job description with each CV > Draft an email containing information about the company & job description > Sends a ‘shortlist/rejection’ email to the candidate > Repeat the process for all CVs

More agent workflows will be introduced in future releases.

⚙️ Added the ‘Edit Agent’ option for an active agent:

The ‘Edit Agent’ option is now available in the agent menu allowing users to edit all the agent details (Goals, Instructions, LLM model, tools, resources, constraints, max iterations, permission type) except the agent name & description. Upon updating the changes, a new run will be created within the agent.

🤖 Introduced Long Term Summary(LTS) & Agent Summary for agent run:

Until v0.0.9, agents were maintaining context for a given task by passing information from their short-term memory (STM) to the LLM. STM is a rolling window containing information based on the LLM’s token limit, meaning that the context outside of this window was lost.

To provide the agent with more context about the job to be done, the information outside of the STM’s rolling window will now be summarized as Long term Summary (LTS) and passed on to the LLM. The weightage of STM and LTS in the response will be 75% and 25% respectively. The combination of STM and LTS is defined as an “Agent Summary”

📤 Added the functionality to manually update Toolkit from the marketplace

Any Changes/updates to SuperAGI toolkits will now be directly published to the marketplace. Users can update the toolkits to the latest version available on the marketplace by using the Update Toolkit button.

📁 Improved the ReadFileTool to read more file formats

The ReadFileTool can now read pdf, csv, epub, docx, txt file extensions. Agents will now be able to retrieve, analyze, and use information from these file types directly. The LLM token utilization to process these files will completely depend on the character count in the file (1 token ~ 4 chars) and not on the file size.

📋 Added the option to save agent templates at the “run” level

Instead of automatically saving the details from the first agent run, the “save template” option is now tethered to the individual agent runs - allowing users to create and save templates from every agent run.

New Tools/ToolKits Added 🛠

🗂️ Apollo.io Toolkit: Search about companies, leads, etc. using the Apollo.io tool and write them to a file and ask the agent to reach out to your leads via email.

What’s Changed

New Contributors

  • @rounak610 made their first contribution by adding support for edit agent in #945
  • @AdarshJha619 made their first contribution by improving readfile tool in #995

v0.0.9

28 Jul 11:20
9dedb9c
Compare
Choose a tag to compare

✨SuperAGI v0.0.9✨

Coding Toolkit enhancements 🤖, Knowledge Embeddings 🧠, 🛠️ SuperAGI Tools repo & more

Improvements to the Core ⚙

🤖 Added a new “ImproveCode” tool to the Coding toolkit to enhance the coding capability of SuperAGI:
The “ImproveCode” tool has been also added to the SuperCoder agent template - enabling users to build sophisticated workflow-driven applications.

The ImproveCode tool goes through the entire code generated by the WriteCodeTool, enhancing code quality and replacing placeholders for missing functions with the required code - improving SuperCoder’s performance, reliability, and code quality.

The new set of instructions for SuperCoder/any agent using CodingToolkit will be as follows “WriteSpec → WriteCode → ImproveCode → WriteTest”.

📚 Introduced Knowledge Embedding in Marketplace:
These Knowledge embeddings can be plugged into an agent workflow, providing the agent with contextual knowledge. Agents can use the “KnowledgeSearch” tool to access this knowledge by running a semantic search query. Currently, SuperAGI supports embeddings that are created from OpenAI's text-embedding-ada-002 model.

Users can install the 'knowledge embeddings' from the marketplace and also add their existing hosted knowledge to SuperAGI. To use the embeddings with an Agent, users can just select the 'KnowledgeSearch Tool' and the desired 'Knowledge Embedding' at the time of agent creation.

To host a local knowledge embedding, users can insert them into a Pinecone or Qdrant index and then proceed with connecting the vector DB manually by inserting the DB’s public URL and setting up knowledge in the SuperAGI dashboard.

🗑️ Added Delete Agent option in the agent menu:
Users can now delete an agent directly from the agent’s activity feed by clicking on the three dots icon next to the “New Run” button. However, the data about APM will still retain the data about deleted agents and runs.

✍🏼 Added Edit Agent Template feature to agent templates:
Added an option to modify agent templates as per user requirements. The modifications will overwrite the previous template. The updated template button will be visible while agent provisioning.

🛠️ A New GitHub repository is created to curate a list of SuperAGI tools created by the community:
All the latest SuperAGI tools will now be uploaded to the following GitHub repo: https://github.com/TransformerOptimus/SuperAGI-Tools.

Contributors can also get their custom tools added by raising a PR. The tool will reflect in the SuperAGI marketplace upon approval from our team. Users can then access and download these tools directly via the marketplace.

🐳 Optimized Docker image size
Eliminated the Celery image build-up step by using the same base image as the backend. We’ve migrated the Backed and GUI base image to a slim version, reducing the final docker image size from 1.94 GB to 1 GB for the backend base image and 1 GB to ~650 MB for the GUI base image.

New Tools/ToolKits Added 🛠

🗂️ Notion Toolkit: Agents can now utilize the Notion toolkit to write and fetch content from Notion, enabling users to create pages, to-do lists, and roadmaps.

🌐 Instagram Toolkit: Agents can now post images generated via stable diffusion along with captions and hashtags.

💻 ImproveCode Tool: Agents using CodingToolkit can now improve the code by filling in the missing functions, classes and placeholders.

What’s Changed

  • Added Agent knowledge and knowledge marketplace by @Tarraann, @ResoluteStoic, @nborthy in #737 and #709
  • Added Improve code tool has been added to the Coding toolkit by by @COLONAYUSH in #755
  • Added Delete Agent feature by @Arkajit-Datta in #473
  • Added Edit Agent template feature by @anisha1607 in #793
  • Added Instagram toolkit by @Maverick-F35 in #828
  • Added Notion toolkit to SuperAGI tools repository
  • Added a SuperAGI docker image and docker improvements by @Fluder-Paradyne in #876
  • Added DuckDuckGo toolkit to SuperAGI tools repository
  • Fixed Twitter toolkit authentication on the cloud version by @TransformerOptimus in #808
  • Fixed Google Calender toolkit authentication on the cloud version by @TransformerOptimus in #808
  • Fixed validation for the model API keys by @boundless-asura in #792
  • Fixed the Resource manager and read file bugs by @Fluder-Paradyne in #786
  • Fixed the GitHub login timeout by @boundless-asura in #850
  • Fixed multiple bugs in frontend and backend across cloud and local versions
  • Added a Contributors license agreement that is mandatory for all the contributors of SuperAGI by @JohnHunt999 in #879

New Contributors

v0.0.8

14 Jul 14:37
Compare
Choose a tag to compare

✨SuperAGI v0.0.8✨

Announcing the launch of 🌴 Google PaLM2 Integration 🛠 (APM) Agent Performance Monitoring, ⏱️ Schedule Agent Run & more

Improvements to the Core ⚙

  • 🤖 Introduced Agent Performance Monitoring (APM) to SuperAGI.
    The APM dashboard provides critical telemetry into the working of agent systems including:
    -- Organization level metrics such # of Agents, # of Tokens, # of Runs etc.
    -- Users can also get Agents-LLM specific insights such as Runs made by an agent using a particular LLM, LLM’s Token consumption etc.
    -- Agent level Analytics like tokens consumed by an agent, Total # of runs, avg tokens per run, total calls & run time.

  • 🦬 Added Google's PaLM 2 Bison LLM: Users can configure PaLM2 Bison model in account settings and select from the model dropdown at the time of agent provisioning. Due to PaLM2's smaller size, users can use PaLM2 model for specific goals that do not require as much thinking ability. We have also implemented a new model factory class, enhancing SuperAGI's capability to incorporate future advancements in large language models (LLMs).

  • 🧠 Added Qdrant DB as LTM: SuperAGI now supports Qdrant DB as a Long-Term Memory (LTM). Qdrant DB provides efficient indexing and searching capabilities for large-scale memory storage, enhancing the performance and scalability of SuperAGI agents' long-term memory.

  • ⏱️ Schedule Agent Run: Added the option to schedule a one-time agent run for the future. Users can also set recurring agent runs after specific time intervals and set optional expiry for recurring runs, based on a time deadline or the total number of runs. For more flexibility, users can also stop, edit and save a new schedule.

  • 🗂️ Resource Manager Per Run Output Directory: The Resource Manager now supports a revamped UI and backend structure that enables easier “per-run“ directory management. Outputs of each run can now be downloaded as a zip file. This update provides a more organized and efficient way to manage and access the output files generated by agents.

New ToolKits Added

🌐 DuckDuckGo Tool: Agents can use DuckDuckGo Tool to perform searches without the need for an API key, allowing for easy access to a privacy-focused search experience.

What’s Changed

New Contributors

  • @Maverick-F35 made their first contribution by adding DuckDuckGo tool in #170
  • @Arkajit-Datta made their first contribution by fixing a runtime bug in #674

v0.0.7

05 Jul 05:43
221e6e9
Compare
Choose a tag to compare

✨SuperAGI v0.0.7✨

🚀SuperAGI Web App, 🛠Toolkit Marketplace, ⚡️GPT4-32K & more

Improvements to the Core ⚙

🚀 SuperAGI Web version is now live on http://app.superagi.com/ . Users can now access SuperAGI through a web interface, without the need for local installations.

To get started, Signup using a GitHub account followed by adding the OpenAI API key in settings. Configure toolkits like Google Search, GitHub, Jira, etc by navigating to the “Toolkits” section and adding the relevant API keys/IDs/tokens for each toolkit to start using tools in agent runs.

🛄 Introduced SuperAGI Marketplace. Users can now browse through all the toolkits & agent templates available in SuperAGI by navigating to the marketplace section. For instance, you can directly install the “Image Generation” toolkit that contains DALL-E & Stable Diffusion tools to be used in a project that requires the generation of visual assets.

🔀 LlamaIndex Integration. Users can upload .pdf, .docx, .pptx, .csv, .txt, and .epub files to the agent via the resource manager. LlamaIndex converts these files to vector embeddings which the agent can use for searching necessary info using the Resource Query tool. Locally, we have added Redis DB as vector storage for LlamaIndex.

🛠️ Add External Tools. Users running SuperAGI locally can now add custom tools by linking a GitHub repo directly from the frontend.

To add their tool, users simply need to add their repo link after navigating to the new “Add Tool” button in the Toolkits section, the tool will then be imported and visible on the frontend. To start using the tool in agent runs, users will need to re-build the application on their machine. Agents can start using the new tool after the installation is complete

We have also released a how-to doc and a cookie-cutter repo for SuperAGI Tool to encourage custom tool building. Find more information here: https://superagi.com/adding-your-own-custom-tool-toolkit-to-superagi/

✅ Tools can be configured directly from toolkit settings in GUI. Optimized the process of adding and configuring tools for agents, enabling users to easily manage and set up tools by adding API keys/IDs/app credentials/tokens, etc directly into the SuperAGI GUI. (Users no longer need to configure the API keys & credentials in “config.yaml” at the time of local build)

💪🏻 Added GPT-4-32k. Introducing the GPT-4-32k model for running agents. Users having access to the model can now select GPT-4-32k while configuring their agent from the model drop-down section.

🤖 Improvements to SuperCoder. SuperCoder agent template can now generate requirements.txt for Python projects and package.json for ‘Javascript’, as well as a run.sh file for code execution.

⚡️ Improvements to code quality by actively writing unit tests for each PR. With the current code coverage increased from 0 → 50%. The goal is to reach 80% and higher eventually.

New Tools Added

🐥 Twitter: SuperAGI agents can now utilize Twitter Toolkit to send tweets along with image/gif/video attachments.

Documentation

✅ Created a Pull request template for the SuperAGI GitHub repository to provide contributors with guidance on creating well-structured and informative pull requests.

📄 Created a Bug Report Issue Template for users to report bugs more effectively by providing clear and detailed information about the issue.

What’s Changed

New Contributors-

  • @PaulRBerg made their first contribution by addressing a critical change in Readme regarding Custom Search Engine ID in #478
  • @jorgectf made their first contribution by enabling code scanning with CodeQL in #612
  • @ai-akuma made their first contribution by expanding conditional statement in #628

v0.0.6

23 Jun 11:54
4a4ce1b
Compare
Choose a tag to compare

✨SuperAGI v0.0.6✨

SuperCoder, Agent Instructions, Toolkits & more

Improvements to the Core ⚙️

🤖 Introduced SuperCoder agent template type. Using SuperCoder template type users can develop end-to-end coding projects by just providing goals & a set of instructions.
For instance, it can create a personal finance calculator, a Chrome-style dino game, and a Pomodoro application by writing the required code and unit tests.

💬 Now add ‘Agent Instructions’ in the agent setup. Users can now enhance the agent’s precision & efficiency by providing step-by-step instructions to fine-tune its workflow.

✅ Introduced ‘Restricted mode’ with permission controls. The agents running on restricted will constantly seek human approvals to execute critical tasks like writing files, sending emails, moving to the next iteration, etc. Users can either “Approve”, “Give feedback” or “Deny” these permission requests in the Action console to let the agent proceed to the next step.

🛠 Added new primitive of toolkits. Toolkit is a collection of tools. For example, the file manager is a toolkit containing tools like the read file & write file tools. It helps the user to easily attach tools to an agent at the time of provisioning. Also allowing contributors to manage & publish new tools for SuperAGI.

🏋️ Integrated NGINX to streamline the installation process NGINX acts as a reverse proxy, helping in running the Front-End and Back-End on the same URL.

🧠 Introducing Tool Memory to allow agents to access and read responses from other tools. Tools can build upon each other's outputs and cross-communicate to support more complex and integrated workflows. Allows for state management for tool output.

✅ Implemented GitHub Actions to automate the unit testing and linting for the codebase. Ensuring that code meets quality standards and is error-free before merging changes.

New Tools Added

🏞 Stable Diffusion: Agents can use stable diffusion models to generate photorealistic images. Allowing agents to generate multimedia assets required to complete the goals.

🗓 Google Calendar: Enabling agents to create/update/delete events to manage and schedule appointments automatically to the user’s calendar.

✒️ Write Specs Tool: Allows agents to write specifications for software projects. Also generate detailed specifications based on user inputs, outlining the requirements, goals, and design considerations for a project.

🧪 Write Unit Tests Tool: Allows agents to write unit tests for their code based on specifications provided by the user or generated by the Write Specs Tool.

Documentation updates

📑 Added v1 API documentation to SuperAGI Docs https://superagi.com/docs/

✍️ Added SuperAGI architecture diagrams to README https://github.com/TransformerOptimus/SuperAGI#-architecture

What’s Changed

New Contributors

Full Changelog: v0.0.1...v0.0.6

v0.0.4

07 Jun 14:18
5404014
Compare
Choose a tag to compare

Core

  • Removed Pinecone dependency
  • Set your own Max Iteration limit for each agent run to limit API calls
  • Track token utilization - added to GUI
  • Added Agents’ task queue for improved task prioritization
  • Track API calls for each agent
  • Configure OpenAI API key from GUI
  • Updated config_template.yaml file to allow for Local or S3 storage of files.
  • Added Github OAuth for authentication and protection of APIs.

Tools

  • Added DALL.E2 for image generation
  • Web Scraping - To scrape data from webpages
  • Coding Tool (all programming languages) - To write code and save it as an output file in the resource manager

Docs

  • Updated Docker install instructions