├── .dockerignore ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── default_issue.md │ └── feature_request.md └── workflows │ └── ci.yml ├── .gitignore ├── .vscode └── settings.json ├── Dockerfile ├── LICENSE ├── README.md ├── Singularity └── gpt4free.sif ├── docker-compose.yaml ├── gpt4free ├── README.md ├── __init__.py ├── forefront │ ├── README.md │ ├── __init__.py │ └── typing.py ├── quora │ ├── README.md │ ├── __init__.py │ ├── api.py │ ├── backup-mail.py │ ├── cookies.txt │ ├── graphql │ │ ├── AddHumanMessageMutation.graphql │ │ ├── AddMessageBreakMutation.graphql │ │ ├── AutoSubscriptionMutation.graphql │ │ ├── BioFragment.graphql │ │ ├── ChatAddedSubscription.graphql │ │ ├── ChatFragment.graphql │ │ ├── ChatListPaginationQuery.graphql │ │ ├── ChatPaginationQuery.graphql │ │ ├── ChatViewQuery.graphql │ │ ├── DeleteHumanMessagesMutation.graphql │ │ ├── DeleteMessageMutation.graphql │ │ ├── HandleFragment.graphql │ │ ├── LoginWithVerificationCodeMutation.graphql │ │ ├── MessageAddedSubscription.graphql │ │ ├── MessageDeletedSubscription.graphql │ │ ├── MessageFragment.graphql │ │ ├── MessageRemoveVoteMutation.graphql │ │ ├── MessageSetVoteMutation.graphql │ │ ├── PoeBotCreateMutation.graphql │ │ ├── PoeBotEditMutation.graphql │ │ ├── SendMessageMutation.graphql │ │ ├── SendVerificationCodeForLoginMutation.graphql │ │ ├── SettingsDeleteAccountButton_deleteAccountMutation_Mutation.graphql │ │ ├── ShareMessagesMutation.graphql │ │ ├── SignupWithVerificationCodeMutation.graphql │ │ ├── StaleChatUpdateMutation.graphql │ │ ├── SubscriptionsMutation.graphql │ │ ├── SummarizePlainPostQuery.graphql │ │ ├── SummarizeQuotePostQuery.graphql │ │ ├── SummarizeSharePostQuery.graphql │ │ ├── UserSnippetFragment.graphql │ │ ├── ViewerInfoQuery.graphql │ │ ├── ViewerStateFragment.graphql │ │ ├── ViewerStateUpdatedSubscription.graphql │ │ └── __init__.py │ ├── mail.py │ └── tests │ │ ├── __init__.py │ │ └── test_api.py ├── test.py ├── theb │ ├── README.md │ ├── __init__.py │ └── theb_test.py ├── usesless │ ├── README.md │ └── __init__.py └── you │ ├── README.md │ └── __init__.py ├── gui ├── README.md ├── __init__.py ├── image1.png ├── image2.png ├── pywebio-gui │ ├── README.md │ └── pywebio-usesless.py ├── query_methods.py ├── streamlit_app.py └── streamlit_chat_app.py ├── poetry.lock ├── pyproject.toml ├── requirements.txt ├── testing ├── forefront_test.py ├── openaihosted_test.py ├── poe_account_create_test.py ├── poe_test.py ├── quora_test_2.py ├── sqlchat_test.py ├── t3nsor_test.py ├── test_main.py ├── theb_test.py ├── useless_test.py ├── usesless_test.py ├── writesonic_test.py └── you_test.py └── unfinished ├── bard ├── README.md ├── __init__.py └── typings.py ├── bing ├── README.md └── __ini__.py ├── chatpdf └── __init__.py ├── gptbz ├── README.md └── __init__.py ├── openprompt ├── README.md ├── create.py ├── mail.py ├── main.py └── test.py └── t3nsor ├── README.md └── __init__.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/default_issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/.github/ISSUE_TEMPLATE/default_issue.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/README.md -------------------------------------------------------------------------------- /Singularity/gpt4free.sif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/Singularity/gpt4free.sif -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /gpt4free/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/gpt4free/README.md -------------------------------------------------------------------------------- /gpt4free/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/gpt4free/__init__.py -------------------------------------------------------------------------------- /gpt4free/forefront/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/gpt4free/forefront/README.md -------------------------------------------------------------------------------- /gpt4free/forefront/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/gpt4free/forefront/__init__.py -------------------------------------------------------------------------------- /gpt4free/forefront/typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/gpt4free/forefront/typing.py -------------------------------------------------------------------------------- /gpt4free/quora/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/gpt4free/quora/README.md -------------------------------------------------------------------------------- /gpt4free/quora/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/gpt4free/quora/__init__.py -------------------------------------------------------------------------------- /gpt4free/quora/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/gpt4free/quora/api.py -------------------------------------------------------------------------------- /gpt4free/quora/backup-mail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/gpt4free/quora/backup-mail.py -------------------------------------------------------------------------------- /gpt4free/quora/cookies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/gpt4free/quora/cookies.txt -------------------------------------------------------------------------------- /gpt4free/quora/graphql/AddHumanMessageMutation.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/gpt4free/quora/graphql/AddHumanMessageMutation.graphql -------------------------------------------------------------------------------- /gpt4free/quora/graphql/AddMessageBreakMutation.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/gpt4free/quora/graphql/AddMessageBreakMutation.graphql -------------------------------------------------------------------------------- /gpt4free/quora/graphql/AutoSubscriptionMutation.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/gpt4free/quora/graphql/AutoSubscriptionMutation.graphql -------------------------------------------------------------------------------- /gpt4free/quora/graphql/BioFragment.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/gpt4free/quora/graphql/BioFragment.graphql -------------------------------------------------------------------------------- /gpt4free/quora/graphql/ChatAddedSubscription.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/gpt4free/quora/graphql/ChatAddedSubscription.graphql -------------------------------------------------------------------------------- /gpt4free/quora/graphql/ChatFragment.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/gpt4free/quora/graphql/ChatFragment.graphql -------------------------------------------------------------------------------- /gpt4free/quora/graphql/ChatListPaginationQuery.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/gpt4free/quora/graphql/ChatListPaginationQuery.graphql -------------------------------------------------------------------------------- /gpt4free/quora/graphql/ChatPaginationQuery.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/gpt4free/quora/graphql/ChatPaginationQuery.graphql -------------------------------------------------------------------------------- /gpt4free/quora/graphql/ChatViewQuery.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/gpt4free/quora/graphql/ChatViewQuery.graphql -------------------------------------------------------------------------------- /gpt4free/quora/graphql/DeleteHumanMessagesMutation.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/gpt4free/quora/graphql/DeleteHumanMessagesMutation.graphql -------------------------------------------------------------------------------- /gpt4free/quora/graphql/DeleteMessageMutation.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/gpt4free/quora/graphql/DeleteMessageMutation.graphql -------------------------------------------------------------------------------- /gpt4free/quora/graphql/HandleFragment.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/gpt4free/quora/graphql/HandleFragment.graphql -------------------------------------------------------------------------------- /gpt4free/quora/graphql/LoginWithVerificationCodeMutation.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/gpt4free/quora/graphql/LoginWithVerificationCodeMutation.graphql -------------------------------------------------------------------------------- /gpt4free/quora/graphql/MessageAddedSubscription.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/gpt4free/quora/graphql/MessageAddedSubscription.graphql -------------------------------------------------------------------------------- /gpt4free/quora/graphql/MessageDeletedSubscription.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/gpt4free/quora/graphql/MessageDeletedSubscription.graphql -------------------------------------------------------------------------------- /gpt4free/quora/graphql/MessageFragment.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/gpt4free/quora/graphql/MessageFragment.graphql -------------------------------------------------------------------------------- /gpt4free/quora/graphql/MessageRemoveVoteMutation.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/gpt4free/quora/graphql/MessageRemoveVoteMutation.graphql -------------------------------------------------------------------------------- /gpt4free/quora/graphql/MessageSetVoteMutation.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/gpt4free/quora/graphql/MessageSetVoteMutation.graphql -------------------------------------------------------------------------------- /gpt4free/quora/graphql/PoeBotCreateMutation.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/gpt4free/quora/graphql/PoeBotCreateMutation.graphql -------------------------------------------------------------------------------- /gpt4free/quora/graphql/PoeBotEditMutation.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/gpt4free/quora/graphql/PoeBotEditMutation.graphql -------------------------------------------------------------------------------- /gpt4free/quora/graphql/SendMessageMutation.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/gpt4free/quora/graphql/SendMessageMutation.graphql -------------------------------------------------------------------------------- /gpt4free/quora/graphql/SendVerificationCodeForLoginMutation.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/gpt4free/quora/graphql/SendVerificationCodeForLoginMutation.graphql -------------------------------------------------------------------------------- /gpt4free/quora/graphql/SettingsDeleteAccountButton_deleteAccountMutation_Mutation.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/gpt4free/quora/graphql/SettingsDeleteAccountButton_deleteAccountMutation_Mutation.graphql -------------------------------------------------------------------------------- /gpt4free/quora/graphql/ShareMessagesMutation.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/gpt4free/quora/graphql/ShareMessagesMutation.graphql -------------------------------------------------------------------------------- /gpt4free/quora/graphql/SignupWithVerificationCodeMutation.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/gpt4free/quora/graphql/SignupWithVerificationCodeMutation.graphql -------------------------------------------------------------------------------- /gpt4free/quora/graphql/StaleChatUpdateMutation.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/gpt4free/quora/graphql/StaleChatUpdateMutation.graphql -------------------------------------------------------------------------------- /gpt4free/quora/graphql/SubscriptionsMutation.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/gpt4free/quora/graphql/SubscriptionsMutation.graphql -------------------------------------------------------------------------------- /gpt4free/quora/graphql/SummarizePlainPostQuery.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/gpt4free/quora/graphql/SummarizePlainPostQuery.graphql -------------------------------------------------------------------------------- /gpt4free/quora/graphql/SummarizeQuotePostQuery.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/gpt4free/quora/graphql/SummarizeQuotePostQuery.graphql -------------------------------------------------------------------------------- /gpt4free/quora/graphql/SummarizeSharePostQuery.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/gpt4free/quora/graphql/SummarizeSharePostQuery.graphql -------------------------------------------------------------------------------- /gpt4free/quora/graphql/UserSnippetFragment.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/gpt4free/quora/graphql/UserSnippetFragment.graphql -------------------------------------------------------------------------------- /gpt4free/quora/graphql/ViewerInfoQuery.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/gpt4free/quora/graphql/ViewerInfoQuery.graphql -------------------------------------------------------------------------------- /gpt4free/quora/graphql/ViewerStateFragment.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/gpt4free/quora/graphql/ViewerStateFragment.graphql -------------------------------------------------------------------------------- /gpt4free/quora/graphql/ViewerStateUpdatedSubscription.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/gpt4free/quora/graphql/ViewerStateUpdatedSubscription.graphql -------------------------------------------------------------------------------- /gpt4free/quora/graphql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gpt4free/quora/mail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/gpt4free/quora/mail.py -------------------------------------------------------------------------------- /gpt4free/quora/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gpt4free/quora/tests/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/gpt4free/quora/tests/test_api.py -------------------------------------------------------------------------------- /gpt4free/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/gpt4free/test.py -------------------------------------------------------------------------------- /gpt4free/theb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/gpt4free/theb/README.md -------------------------------------------------------------------------------- /gpt4free/theb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/gpt4free/theb/__init__.py -------------------------------------------------------------------------------- /gpt4free/theb/theb_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/gpt4free/theb/theb_test.py -------------------------------------------------------------------------------- /gpt4free/usesless/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/gpt4free/usesless/README.md -------------------------------------------------------------------------------- /gpt4free/usesless/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/gpt4free/usesless/__init__.py -------------------------------------------------------------------------------- /gpt4free/you/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/gpt4free/you/README.md -------------------------------------------------------------------------------- /gpt4free/you/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/gpt4free/you/__init__.py -------------------------------------------------------------------------------- /gui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/gui/README.md -------------------------------------------------------------------------------- /gui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gui/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/gui/image1.png -------------------------------------------------------------------------------- /gui/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/gui/image2.png -------------------------------------------------------------------------------- /gui/pywebio-gui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/gui/pywebio-gui/README.md -------------------------------------------------------------------------------- /gui/pywebio-gui/pywebio-usesless.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/gui/pywebio-gui/pywebio-usesless.py -------------------------------------------------------------------------------- /gui/query_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/gui/query_methods.py -------------------------------------------------------------------------------- /gui/streamlit_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/gui/streamlit_app.py -------------------------------------------------------------------------------- /gui/streamlit_chat_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/gui/streamlit_chat_app.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/requirements.txt -------------------------------------------------------------------------------- /testing/forefront_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/testing/forefront_test.py -------------------------------------------------------------------------------- /testing/openaihosted_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/testing/openaihosted_test.py -------------------------------------------------------------------------------- /testing/poe_account_create_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/testing/poe_account_create_test.py -------------------------------------------------------------------------------- /testing/poe_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/testing/poe_test.py -------------------------------------------------------------------------------- /testing/quora_test_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/testing/quora_test_2.py -------------------------------------------------------------------------------- /testing/sqlchat_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/testing/sqlchat_test.py -------------------------------------------------------------------------------- /testing/t3nsor_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/testing/t3nsor_test.py -------------------------------------------------------------------------------- /testing/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/testing/test_main.py -------------------------------------------------------------------------------- /testing/theb_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/testing/theb_test.py -------------------------------------------------------------------------------- /testing/useless_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/testing/useless_test.py -------------------------------------------------------------------------------- /testing/usesless_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/testing/usesless_test.py -------------------------------------------------------------------------------- /testing/writesonic_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/testing/writesonic_test.py -------------------------------------------------------------------------------- /testing/you_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/testing/you_test.py -------------------------------------------------------------------------------- /unfinished/bard/README.md: -------------------------------------------------------------------------------- 1 | to do: 2 | - code refractoring -------------------------------------------------------------------------------- /unfinished/bard/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/unfinished/bard/__init__.py -------------------------------------------------------------------------------- /unfinished/bard/typings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/unfinished/bard/typings.py -------------------------------------------------------------------------------- /unfinished/bing/README.md: -------------------------------------------------------------------------------- 1 | to do: 2 | - code refractoring -------------------------------------------------------------------------------- /unfinished/bing/__ini__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/unfinished/bing/__ini__.py -------------------------------------------------------------------------------- /unfinished/chatpdf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/unfinished/chatpdf/__init__.py -------------------------------------------------------------------------------- /unfinished/gptbz/README.md: -------------------------------------------------------------------------------- 1 | https://chat.gpt.bz 2 | 3 | to do: 4 | - code refractoring -------------------------------------------------------------------------------- /unfinished/gptbz/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/unfinished/gptbz/__init__.py -------------------------------------------------------------------------------- /unfinished/openprompt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/unfinished/openprompt/README.md -------------------------------------------------------------------------------- /unfinished/openprompt/create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/unfinished/openprompt/create.py -------------------------------------------------------------------------------- /unfinished/openprompt/mail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/unfinished/openprompt/mail.py -------------------------------------------------------------------------------- /unfinished/openprompt/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/unfinished/openprompt/main.py -------------------------------------------------------------------------------- /unfinished/openprompt/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/unfinished/openprompt/test.py -------------------------------------------------------------------------------- /unfinished/t3nsor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/unfinished/t3nsor/README.md -------------------------------------------------------------------------------- /unfinished/t3nsor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/gpt4free/HEAD/unfinished/t3nsor/__init__.py --------------------------------------------------------------------------------