Skip to content

Latest commit

 

History

History
53 lines (42 loc) · 1.71 KB

README_en.md

File metadata and controls

53 lines (42 loc) · 1.71 KB

chatgpt-tool-hub

让chatgpt使用工具

Language license last commit


简体中文 | English

简介

An open-source chatgpt tool ecosystem where you can combine tools with chatgpt and use natural language to do anything. If plugins are the App store for ChatGPT, then ChatGPT-Tool-Hub is the APK installer for Android.

Installation

You can install directly using pip by doing chatgpt-tool-hub

Example

import os
from chatgpt_tool_hub.apps import AppFactory
os.environ["LLM_API_KEY"] = "YOUR_LLM_API_KEY"
os.environ["PROXY"] = "YOUR_PROXY_ADDRESS"
app = AppFactory().create_app()
reply = app.ask("YOUR_QUESTION_TO_HERE")
print(reply)

Tool

todo list