Aorist-AI / Free-AUTOGPT-with-NO-API

Free-AUTOGPT-with-NO-API is a repository that offers a simple version of Autogpt, an autonomous AI agent capable of performing tasks independently. Unlike other versions, our implementation does not rely on any paid OpenAI API, making it accessible to anyone.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

TODO , I NEED YOUR HELP


HOW TO RUN CAMEL

  • dowload the repository FREE AUTOGPT REPOSITORY and extract
  • pip3 install -r requirements.txt
  • streamlit run Camel.py

image|690x441


HOW TO RUN BABY AGI

  • dowload the repository FREE AUTOGPT REPOSITORY
  • pip3 install -r requirements.txt
  • set the GOAL
  • Usage: python BabyAGI.py

image|690x441


WHY THIS REPOSITORY ?

Hello everyone 🥰 ,

I wanted to start by talking about how important it is to democratize AI. Unfortunately, most new applications or discoveries in this field end up enriching some big companies, leaving behind small businesses or simple projects. One striking example of this is Autogpt, an autonomous AI agent capable of performing tasks.

Autogpt and similar projects like BabyAGI only work with paid APIs, which is not fair. That's why I tried to recreate a simpler but very interesting and, above all, open-source version of Autogpt that does not require any API and does not need any particular hardware.

I believe that by providing free and open-source AI tools, we can give small businesses and individuals the opportunity to create new and innovative projects without the need for significant financial investment. This will allow for more equitable and diverse access to AI technology, which is essential for advancing society as a whole.


HOW IT WORK ?

VIDEO DEMO

First, find everywhere for easily accessible and free websites or endpoints to use. Eventually, I came across this simple library: T3nsor. This library allows us to use GPT3.5 APIs completely for free. All credit to xtekky

After finding this free library, I had to create a custom wrapper for my LLM using Langchain. This is because Langchain mostly offers LLM models that are only available for a fee. However, we were able to create a custom component based on the t3nsor.tech endpoint.

All ...API.py file contain FREE CUSTOM LLM WRAPPER for LANGCHAIN . Use is very simple :

from t3nsorAPI import gpt3NoInternet  not working the best
from quoraAPI import GPT4QUORA        not working

from sqlchatAPI import sqlchatGPT3   
from phindAPI import phindGPT4Internet
from writesonicAPI import writesonicGPT3Internet
from youAPI import youGPT3Internet

llm1 = youGPT3Internet()
llm2 = writesonicGPT3Internet()
llm3 = sqlchatGPT3()
llm4 = GPT4QUORA()
llm5 = phindGPT4Internet()
llm6 = gpt3NoInternet()

print(llm1("Hello, how are you?"))
print(llm5("what is AI?"))
print(llm6("how have i question in before?"))


With this "CUSTOM LLM WRAPPER" now u can build or test your LLM APP's WITHOUT PAYing

LINK :

🤗 Democratize AI 🤗

About

Free-AUTOGPT-with-NO-API is a repository that offers a simple version of Autogpt, an autonomous AI agent capable of performing tasks independently. Unlike other versions, our implementation does not rely on any paid OpenAI API, making it accessible to anyone.

License:MIT License


Languages

Language:Python 100.0%