百科.dev
全部条目AI 编程趋势榜开源项目技术资讯提交条目
登录
< 返回工具列表
F

Free-Auto-GPT

> AI 编程
开源

免费的 Auto GPT (不需要付费的 API) 是一个存储库,提供了 Auto GPT 的简单版本,这是一种自主的 AI 代理,能够独立执行任务。

2.5K stars0 点赞0 次浏览
访问官网GitHub

工具介绍

免费的 Auto GPT (不需要付费的 API) 是一个存储库,提供了 Auto GPT 的简单版本,这是一种自主的 AI 代理,能够独立执行任务。

USE AI AGENTs, like AUTO-GPT or BABYAGI, without paids API TOTALLY FOR FREE

Tired of paying for OPENAI, PINECONE, GOOGLESEARCH APIs to try out the latest developments in the AI field? Perfect, **this is the repository for you! **

For any problem open an ISSUE , the project is very simple so any help is welcome.

Are you bored reading? Do you want to try our project now⏳? Open the notebook on Colab everything is ready!

RUN NOW ON COLAB ⚠️ Abusing this tool is at your own risk

By the way, thank you so much for and all the support!!

WHY THIS REPOSITORY ?

Hello everyone :smiling_face_with_three_hearts: ,

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 TO GET Tokens & Cookies totally for FREE

GET HUGGINGFACE TOKEN

  • HUGGINGFACE TOKEN : Visit this simple official guide

GET HUGGINGCHAT COOKIE

  • copy your email and password int .env file

GET CHATGPT COOKIE

  • (OPTIONAL BUT BETTER RESULT) CHATGPT :
    1. Go to https://chat.openai.com/chat and open the developer tools by F12.
    2. Find the __Secure-next-auth.session-token cookie in Application > Storage > Cookies > https://chat.openai.com.
    3. Copy the value in the Cookie Value field in .env file.
    4. If you have Plus subscription you can use GPT4. Edit in .env file this line : USE_GPT4 = True

GET GOOGLE BARD COOKIE

  • (OPTIONAL) Google Bard :
    1. Go toGo to https://bard.google.com/ and open the developer tools by F12.
    2. Find the __Secure-1PSID cookie in Application > Storage > Cookies
    3. Copy the value in the Cookie Value field in .env file.

GET MICROSOFT BING COOKIE

  • (OPTIONAL) Bing CHAT‍ :
    1. Check if you have access to Bing Chat
    2. Install the cookie editor extension for Chrome or Firefox
    3. Go to bing.com
    4. Open the extension for cookie
    5. Click "Export" on the bottom right, then "Export as JSON" (This saves your cookies to clipboard)
    6. Paste your cookies into a file cookiesBing.json


⚠️ SETUP the .env FILE ⚠️

Open the file called `.env` . If you dont see the file, open your file manger and check for **`Show hidden file`** .

Now add you Cookie and Token in .env file .



Local using with Dev Container in VSCode by @FlamingFury00

Added the possibility to use Docker image using Dev Container in VSCode. How to run it :

  • Install Docker Desktop
  • Install Visual Studio Code
  • Open Visual Studio and go to Extensions -> search for Dev Container -> install it
  • Restart Visual Studio
  • Go to the project folder, right click and "Open in Visual Studio Code"
  • It will ask you to reopen in a Docker Container
  • Click "Reopen" and wait for it to be complete (you need to have Docker Desktop opened)


HOW TO RUN BABY AGI

RUN NOW ON COLAB ⚠️ Abusing this tool is at your own risk

Or use Locally :

  • Dowload the repository FREE AUTOGPT REPOSITORY
  • install using Dev Container in VSCode or python3 -m pip install -r requirements.txt
  • insert the .env file yours Token
  • if you dont see the .env file check "Show hidden file" in your file manger
  • Usage: python BABYAGI.py

https://user-images.githubusercontent.com/108482353/234963635-004adace-36ab-46de-9022-61858cd3dca4.mp4



HOW TO RUN AUTOGPT

RUN NOW ON COLAB ⚠️ Abusing this tool is at your own risk

Or use Locally :

  • Dowload the repository FREE AUTOGPT REPOSITORY
  • install using Dev Container in VSCode or python3 -m pip install -r requirements.txt
  • insert the .env file yours Token
  • if you dont see the .env file check "Show hidden file" in your file manger
  • Usage: python AUTOGPT.py

https://user-images.githubusercontent.com/108482353/234947600-1df35b1f-6505-40f9-be1d-3257a46eacf3.mp4



HOW TO RUN Your CUSTOM AGENT

RUN NOW ON COLAB ⚠️ Abusing this tool is at your own risk

Or use Locally :

  • Dowload the repository FREE AUTOGPT REPOSITORY
  • install using Dev Container in VSCode or python3 -m pip install -r requirements.txt
  • cd OtherAgent/
  • Choose or develop your agent [ csvAgent.py ; pythonAgent.py ; customAgent.py ]
  • Usage: python YourAgent.py

https://user-images.githubusercontent.com/108482353/235354639-998f0a40-3d2d-4f33-b187-17a3be8d7899.mp4



HOW TO RUN CAMEL

RUN NOW ON COLAB ⚠️ Abusing this tool is at your own risk

Or use Locally :

  • Dowload the repository FREE AUTOGPT REPOSITORY
  • python3 -m pip install -r requirements.txt
  • streamlit run Camel.py

https://user-images.githubusercontent.com/108482353/235199747-c2dbdd27-80d6-4950-9cc6-7f140890f386.mp4



HOW IT WORK ?

To create an open-source version of Autogpt that does not require paid APIs or specific hardware, we performed a reverse engineering process on ChatGPT, a language model developed by OpenAI. By doing so, we were able to use the agents and new technologies of langchain for free.

We then created a custom LLM wrapper with langchain, **which can be used as a plug-and-play solution with any langchain function or tool **.

from FreeLLM import ChatGPTAPI 

# Instantiate a ChatGPT object with your token
llm = ChatGPTAPI.ChatGPT((token="YOURTOKEN")  #for start new chat

# If you have a Plus subscription , you can use GPT4 model
 llm = ChatGPTAPI.ChatGPT((token="YOURTOKEN", model="gpt4") # REQUIRED CHATGPT PLUS subscription

# or if if u would to start from an existing chat 
# llm = ChatGPTAPI.ChatGPT(token = "YOUR-TOKEN", conversation = "Add-XXXX-XXXX-Convesation-ID")

# Generate a response based on the given prompt
response = llm("Hello, how are you?")

# Print the response
print(response)

The code snippet provided above shows how to use our custom ChatGPT LLM class to interact with the language model. It requires a token from the ChatGPT API, which can be obtained from https://chat.openai.com/api/auth/session.

Please note that there is a limit of 50 requests per hour for each account on the ChatGPT API . Therefore, we implemented a call counter in our ChatGPT class to prevent exceeding this limit.

Now support HuggingCHAT LLM

from FreeLLM import HuggingChatAPI 

# Instantiate a ChatGPT object with your token
llm = HuggingChatAPI.HuggingChat()  #for start new chat

# Generate a response based on the given prompt
response = llm("Hello, how are you?")

# Print the response
print(response)

Now support Bing CHAT LLM

…

Now support Google BARD CHAT LLM

from FreeLLM import BardChatAPI 

# Instantiate a Bard CHAT object with your cookie path
llm=BardChatAPI.BardChat(cookie="cookie") #for start new chat

# Generate a response based on the given prompt
response = llm("Hello, how are you?")

# Print the response
print(response)

We believe that our open-source version of Autogpt will promote equitable and diverse access to AI technology and empower individuals and small businesses to create innovative AI projects without significant financial investment.

This is an example of CUSTOM agent, in less of 60 line of code and totally for free, with:

  • Internet access
  • Python code execution
  • Wikipedia knowledge
…


** Democratize AI **

By the way, thank you so much for and all the support!!



TODO , I NEED YOUR HELP ‍

  • Create free LLM langchain wrapper based on Reverse Engineered ChatGPT API by OpenAI
  • Create free LLM langchain wrapper based on Reverse Engineered HUGGING CHAT API by HuggingFace
  • Create free LLM langchain wrapper based on Reverse Engineered Bing CHAT API by Microsoft
  • Create free LLM langchain wrapper based on Reverse Engineered Bard CHAT API by Google
  • Find a way to replace OpenAIEmbeddings() using HuggingFace Embeddings infeence API
  • Create a simple versione of CAMEL based on Camel theory
  • Create a simple version of BABYAGI based on Baby AGI
  • Add web search Tool
  • Add file writer Tool
  • Add Wikipedia Tool
  • Add QA web page Tool
  • Finally AUTOGPT without paids API
  • Make a Colab Notebook for make this repository accessible to anyone
  • Local using with Dev Container in VSCode by @FlamingFury00
  • Add other free Custom LLM wrapper Add this
  • Add long term memory
  • Find a way to replace PINECONE api
  • Find a way to replace official Google API

We are hungry for PULL REQUEST


Useful LINK

  • VIDEO DEMO
  • [FREE AUTOGPT REPOSITORY](https://github

GitHub Issues· 0 开放

在 GitHub 查看全部

暂无开放 Issues,或尚未同步最近议题。

> 标签

Pythonaiauto-gptautogptautogpt-no-paid-api

暂无评论,来聊聊你的看法吧

> 工具信息

发布日期2026年8月1日
最后更新2026年9月17日
分类AI 编程
定价开源

> 相关工具

G
GitHub Copilot
GitHub 官方 AI 编程助手,覆盖补全、Chat 与 Agent 模式。
C
Cursor
AI 原生代码编辑器,对话改代码、多文件 Agent 与规则体系是其核心。
S
skills
Skills for Real Engineers. Straight from my .agents directory.