├── .env.template ├── .gitattributes ├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── LICENSE ├── README.md ├── assets ├── apply_openai_api_key.png ├── buy_me_a_coffee.jpg └── llm-os.jpg ├── chatgpt_tool_hub ├── .gitignore ├── __init__.py ├── apps │ ├── __init__.py │ ├── app.py │ ├── app_factory.py │ ├── lite_app.py │ └── victorinox.py ├── bots │ ├── __init__.py │ ├── all_bot_list.py │ ├── chat_bot │ │ ├── __init__.py │ │ ├── base.py │ │ └── prompt.py │ └── qa_bot │ │ ├── __init__.py │ │ ├── base.py │ │ └── prompt.py ├── chains │ ├── __init__.py │ ├── api │ │ ├── __init__.py │ │ ├── base.py │ │ └── prompt.py │ ├── base.py │ └── llm.py ├── common │ ├── __init__.py │ ├── cache.py │ ├── callbacks.py │ ├── config.py │ ├── constants.py │ ├── document.py │ ├── formatting.py │ ├── input.py │ ├── json_utils.py │ ├── log.py │ ├── schema.py │ ├── singleton.py │ ├── text_splitter.py │ └── utils.py ├── database │ ├── __init__.py │ ├── chat_memory.py │ ├── token_buffer.py │ └── utils.py ├── engine │ ├── __init__.py │ ├── bot.py │ ├── initialize.py │ └── tool_engine.py ├── models │ ├── __init__.py │ ├── base.py │ ├── calculate_token.py │ ├── chatgpt │ │ ├── __init__.py │ │ ├── base.py │ │ └── chatgpt.py │ └── model_factory.py ├── prompts │ ├── __init__.py │ ├── base.py │ ├── chat.py │ └── prompt.py ├── tools │ ├── .gitignore │ ├── __init__.py │ ├── arxiv_search │ │ ├── __init__.py │ │ ├── api_prompt.py │ │ ├── tool.py │ │ └── wrapper.py │ ├── base_tool.py │ ├── bing_search │ │ ├── __init__.py │ │ ├── prompt.py │ │ ├── tool.py │ │ └── wrapper.py │ ├── email │ │ ├── __init__.py │ │ ├── prompt.py │ │ └── tool.py │ ├── google_search │ │ ├── __init__.py │ │ ├── prompt.py │ │ ├── tool.py │ │ └── wrapper.py │ ├── hello_tool │ │ ├── __init__.py │ │ └── tool.py │ ├── load_tools.py │ ├── meteo │ │ ├── __init__.py │ │ ├── docs_prompt.py │ │ └── tool.py │ ├── news │ │ ├── __init__.py │ │ ├── finance_news │ │ │ ├── __init__.py │ │ │ └── tool.py │ │ ├── morning_news │ │ │ ├── __init__.py │ │ │ ├── prompt.py │ │ │ └── tool.py │ │ ├── news_api │ │ │ ├── __init__.py │ │ │ ├── prompt.py │ │ │ └── tool.py │ │ └── tool.py │ ├── python │ │ ├── __init__.py │ │ ├── prompt.py │ │ └── tool.py │ ├── searxng_search │ │ ├── __init__.py │ │ ├── prompt.py │ │ ├── tool.py │ │ └── wrapper.py │ ├── sms │ │ ├── __init__.py │ │ ├── prompt.py │ │ └── tool.py │ ├── stt_tts │ │ ├── __init__.py │ │ ├── stt.py │ │ └── tts.py │ ├── summary │ │ ├── __init__.py │ │ ├── prompt.py │ │ ├── reduce_prompt.py │ │ ├── text_clipper.py │ │ └── tool.py │ ├── system │ │ ├── __init__.py │ │ ├── answer_user.py │ │ └── debug.py │ ├── terminal │ │ ├── __init__.py │ │ ├── prompt.py │ │ └── tool.py │ ├── tool.py │ ├── tool_register.py │ ├── visual │ │ ├── __init__.py │ │ ├── test.py │ │ └── tool.py │ ├── web_requests │ │ ├── __init__.py │ │ ├── browser.py │ │ ├── get.py │ │ ├── post.py │ │ └── wrapper.py │ ├── wechat │ │ ├── __init__.py │ │ ├── lib │ │ │ └── itchat │ │ │ │ ├── __init__.py │ │ │ │ ├── async_components │ │ │ │ ├── __init__.py │ │ │ │ ├── contact.py │ │ │ │ ├── hotreload.py │ │ │ │ ├── login.py │ │ │ │ ├── messages.py │ │ │ │ └── register.py │ │ │ │ ├── components │ │ │ │ ├── __init__.py │ │ │ │ ├── contact.py │ │ │ │ ├── hotreload.py │ │ │ │ ├── login.py │ │ │ │ ├── messages.py │ │ │ │ └── register.py │ │ │ │ ├── config.py │ │ │ │ ├── content.py │ │ │ │ ├── core.py │ │ │ │ ├── log.py │ │ │ │ ├── returnvalues.py │ │ │ │ ├── storage │ │ │ │ ├── __init__.py │ │ │ │ ├── messagequeue.py │ │ │ │ └── templates.py │ │ │ │ └── utils.py │ │ ├── prompt.py │ │ ├── tool.py │ │ └── wrapper.py │ ├── wikipedia │ │ ├── __init__.py │ │ ├── prompt.py │ │ ├── tool.py │ │ └── wrapper.py │ └── wolfram_alpha │ │ ├── __init__.py │ │ ├── prompt.py │ │ ├── tool.py │ │ └── wrapper.py └── version.py ├── config.json.template ├── docs ├── README_en.md ├── apply_optional_tool.md ├── q_and_a.md ├── tool_development_guide.md ├── tool_tutorial.md └── update_log.md ├── requirements.txt ├── requirements_all.txt ├── server.py ├── setup.py ├── terminal_io.py ├── test.py └── tests ├── init.ipynb ├── tool ├── arxiv_search.ipynb ├── bing_search.ipynb ├── email.ipynb ├── finance_news.ipynb ├── google_search.ipynb ├── meteo.ipynb ├── morning_news.ipynb ├── news_api.ipynb ├── python.ipynb ├── searxng_search.ipynb ├── sms.ipynb ├── stt_tts.ipynb ├── summary.ipynb ├── terminal.ipynb ├── visual.ipynb ├── web_requests.ipynb ├── wechat.ipynb ├── wikipedia.ipynb └── wolfram-alpha.ipynb └── victorinox.ipynb /.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/.env.template -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.ipynb filter=strip-notebook-output -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/README.md -------------------------------------------------------------------------------- /assets/apply_openai_api_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/assets/apply_openai_api_key.png -------------------------------------------------------------------------------- /assets/buy_me_a_coffee.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/assets/buy_me_a_coffee.jpg -------------------------------------------------------------------------------- /assets/llm-os.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/assets/llm-os.jpg -------------------------------------------------------------------------------- /chatgpt_tool_hub/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/.gitignore -------------------------------------------------------------------------------- /chatgpt_tool_hub/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/__init__.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/apps/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/apps/__init__.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/apps/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/apps/app.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/apps/app_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/apps/app_factory.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/apps/lite_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/apps/lite_app.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/apps/victorinox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/apps/victorinox.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/bots/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/bots/__init__.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/bots/all_bot_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/bots/all_bot_list.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/bots/chat_bot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chatgpt_tool_hub/bots/chat_bot/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/bots/chat_bot/base.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/bots/chat_bot/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/bots/chat_bot/prompt.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/bots/qa_bot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chatgpt_tool_hub/bots/qa_bot/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/bots/qa_bot/base.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/bots/qa_bot/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/bots/qa_bot/prompt.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/chains/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/chains/__init__.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/chains/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/chains/api/__init__.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/chains/api/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/chains/api/base.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/chains/api/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/chains/api/prompt.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/chains/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/chains/base.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/chains/llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/chains/llm.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chatgpt_tool_hub/common/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/common/cache.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/common/callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/common/callbacks.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/common/config.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chatgpt_tool_hub/common/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/common/constants.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/common/document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/common/document.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/common/formatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/common/formatting.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/common/input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/common/input.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/common/json_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/common/json_utils.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/common/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/common/log.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/common/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/common/schema.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/common/singleton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/common/singleton.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/common/text_splitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/common/text_splitter.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/common/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/common/utils.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/database/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/database/__init__.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/database/chat_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/database/chat_memory.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/database/token_buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/database/token_buffer.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/database/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/database/utils.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/engine/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/engine/__init__.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/engine/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/engine/bot.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/engine/initialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/engine/initialize.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/engine/tool_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/engine/tool_engine.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/models/__init__.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/models/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/models/base.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/models/calculate_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/models/calculate_token.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/models/chatgpt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/models/chatgpt/__init__.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/models/chatgpt/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/models/chatgpt/base.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/models/chatgpt/chatgpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/models/chatgpt/chatgpt.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/models/model_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/models/model_factory.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/prompts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/prompts/__init__.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/prompts/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/prompts/base.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/prompts/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/prompts/chat.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/prompts/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/prompts/prompt.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/.gitignore: -------------------------------------------------------------------------------- 1 | dev/ 2 | custom_tools/ -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/__init__.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/arxiv_search/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/arxiv_search/__init__.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/arxiv_search/api_prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/arxiv_search/api_prompt.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/arxiv_search/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/arxiv_search/tool.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/arxiv_search/wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/arxiv_search/wrapper.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/base_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/base_tool.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/bing_search/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/bing_search/__init__.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/bing_search/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/bing_search/prompt.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/bing_search/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/bing_search/tool.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/bing_search/wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/bing_search/wrapper.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/email/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/email/__init__.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/email/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/email/prompt.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/email/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/email/tool.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/google_search/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/google_search/__init__.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/google_search/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/google_search/prompt.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/google_search/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/google_search/tool.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/google_search/wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/google_search/wrapper.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/hello_tool/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/hello_tool/__init__.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/hello_tool/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/hello_tool/tool.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/load_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/load_tools.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/meteo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/meteo/__init__.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/meteo/docs_prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/meteo/docs_prompt.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/meteo/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/meteo/tool.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/news/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/news/__init__.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/news/finance_news/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/news/finance_news/__init__.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/news/finance_news/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/news/finance_news/tool.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/news/morning_news/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/news/morning_news/__init__.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/news/morning_news/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/news/morning_news/prompt.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/news/morning_news/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/news/morning_news/tool.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/news/news_api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/news/news_api/__init__.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/news/news_api/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/news/news_api/prompt.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/news/news_api/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/news/news_api/tool.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/news/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/news/tool.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/python/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/python/__init__.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/python/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/python/prompt.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/python/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/python/tool.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/searxng_search/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/searxng_search/__init__.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/searxng_search/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/searxng_search/prompt.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/searxng_search/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/searxng_search/tool.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/searxng_search/wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/searxng_search/wrapper.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/sms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/sms/__init__.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/sms/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/sms/prompt.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/sms/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/sms/tool.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/stt_tts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/stt_tts/__init__.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/stt_tts/stt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/stt_tts/stt.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/stt_tts/tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/stt_tts/tts.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/summary/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/summary/__init__.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/summary/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/summary/prompt.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/summary/reduce_prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/summary/reduce_prompt.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/summary/text_clipper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/summary/text_clipper.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/summary/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/summary/tool.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/system/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/system/__init__.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/system/answer_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/system/answer_user.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/system/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/system/debug.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/terminal/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/terminal/__init__.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/terminal/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/terminal/prompt.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/terminal/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/terminal/tool.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/tool.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/tool_register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/tool_register.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/visual/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/visual/__init__.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/visual/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/visual/test.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/visual/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/visual/tool.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/web_requests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/web_requests/__init__.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/web_requests/browser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/web_requests/browser.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/web_requests/get.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/web_requests/get.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/web_requests/post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/web_requests/post.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/web_requests/wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/web_requests/wrapper.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/wechat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/wechat/__init__.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/wechat/lib/itchat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/wechat/lib/itchat/__init__.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/wechat/lib/itchat/async_components/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/wechat/lib/itchat/async_components/__init__.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/wechat/lib/itchat/async_components/contact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/wechat/lib/itchat/async_components/contact.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/wechat/lib/itchat/async_components/hotreload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/wechat/lib/itchat/async_components/hotreload.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/wechat/lib/itchat/async_components/login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/wechat/lib/itchat/async_components/login.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/wechat/lib/itchat/async_components/messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/wechat/lib/itchat/async_components/messages.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/wechat/lib/itchat/async_components/register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/wechat/lib/itchat/async_components/register.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/wechat/lib/itchat/components/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/wechat/lib/itchat/components/__init__.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/wechat/lib/itchat/components/contact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/wechat/lib/itchat/components/contact.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/wechat/lib/itchat/components/hotreload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/wechat/lib/itchat/components/hotreload.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/wechat/lib/itchat/components/login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/wechat/lib/itchat/components/login.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/wechat/lib/itchat/components/messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/wechat/lib/itchat/components/messages.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/wechat/lib/itchat/components/register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/wechat/lib/itchat/components/register.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/wechat/lib/itchat/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/wechat/lib/itchat/config.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/wechat/lib/itchat/content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/wechat/lib/itchat/content.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/wechat/lib/itchat/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/wechat/lib/itchat/core.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/wechat/lib/itchat/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/wechat/lib/itchat/log.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/wechat/lib/itchat/returnvalues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/wechat/lib/itchat/returnvalues.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/wechat/lib/itchat/storage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/wechat/lib/itchat/storage/__init__.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/wechat/lib/itchat/storage/messagequeue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/wechat/lib/itchat/storage/messagequeue.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/wechat/lib/itchat/storage/templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/wechat/lib/itchat/storage/templates.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/wechat/lib/itchat/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/wechat/lib/itchat/utils.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/wechat/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/wechat/prompt.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/wechat/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/wechat/tool.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/wechat/wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/wechat/wrapper.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/wikipedia/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/wikipedia/__init__.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/wikipedia/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/wikipedia/prompt.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/wikipedia/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/wikipedia/tool.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/wikipedia/wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/wikipedia/wrapper.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/wolfram_alpha/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/wolfram_alpha/__init__.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/wolfram_alpha/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/wolfram_alpha/prompt.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/wolfram_alpha/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/wolfram_alpha/tool.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/tools/wolfram_alpha/wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/chatgpt_tool_hub/tools/wolfram_alpha/wrapper.py -------------------------------------------------------------------------------- /chatgpt_tool_hub/version.py: -------------------------------------------------------------------------------- 1 | __version__ = '0.5.0' 2 | -------------------------------------------------------------------------------- /config.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/config.json.template -------------------------------------------------------------------------------- /docs/README_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/docs/README_en.md -------------------------------------------------------------------------------- /docs/apply_optional_tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/docs/apply_optional_tool.md -------------------------------------------------------------------------------- /docs/q_and_a.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/docs/q_and_a.md -------------------------------------------------------------------------------- /docs/tool_development_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/docs/tool_development_guide.md -------------------------------------------------------------------------------- /docs/tool_tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/docs/tool_tutorial.md -------------------------------------------------------------------------------- /docs/update_log.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/docs/update_log.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_all.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/requirements_all.txt -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/setup.py -------------------------------------------------------------------------------- /terminal_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/terminal_io.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/test.py -------------------------------------------------------------------------------- /tests/init.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/tests/init.ipynb -------------------------------------------------------------------------------- /tests/tool/arxiv_search.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/tests/tool/arxiv_search.ipynb -------------------------------------------------------------------------------- /tests/tool/bing_search.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/tests/tool/bing_search.ipynb -------------------------------------------------------------------------------- /tests/tool/email.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/tests/tool/email.ipynb -------------------------------------------------------------------------------- /tests/tool/finance_news.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/tests/tool/finance_news.ipynb -------------------------------------------------------------------------------- /tests/tool/google_search.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/tests/tool/google_search.ipynb -------------------------------------------------------------------------------- /tests/tool/meteo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/tests/tool/meteo.ipynb -------------------------------------------------------------------------------- /tests/tool/morning_news.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/tests/tool/morning_news.ipynb -------------------------------------------------------------------------------- /tests/tool/news_api.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/tests/tool/news_api.ipynb -------------------------------------------------------------------------------- /tests/tool/python.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/tests/tool/python.ipynb -------------------------------------------------------------------------------- /tests/tool/searxng_search.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/tests/tool/searxng_search.ipynb -------------------------------------------------------------------------------- /tests/tool/sms.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/tests/tool/sms.ipynb -------------------------------------------------------------------------------- /tests/tool/stt_tts.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/tests/tool/stt_tts.ipynb -------------------------------------------------------------------------------- /tests/tool/summary.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/tests/tool/summary.ipynb -------------------------------------------------------------------------------- /tests/tool/terminal.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/tests/tool/terminal.ipynb -------------------------------------------------------------------------------- /tests/tool/visual.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/tests/tool/visual.ipynb -------------------------------------------------------------------------------- /tests/tool/web_requests.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/tests/tool/web_requests.ipynb -------------------------------------------------------------------------------- /tests/tool/wechat.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/tests/tool/wechat.ipynb -------------------------------------------------------------------------------- /tests/tool/wikipedia.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/tests/tool/wikipedia.ipynb -------------------------------------------------------------------------------- /tests/tool/wolfram-alpha.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/tests/tool/wolfram-alpha.ipynb -------------------------------------------------------------------------------- /tests/victorinox.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldfishh/chatgpt-tool-hub/HEAD/tests/victorinox.ipynb --------------------------------------------------------------------------------