├── .gitignore ├── gpt4_openai ├── __init__.py └── driver.py ├── readme.md ├── setup.py └── test ├── .env-file ├── test.py ├── test_browsing.py ├── test_code_interpretter.py ├── test_continue_generating.py ├── test_dalle3.py └── test_langchain.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erol444/gpt4-openai-api/HEAD/.gitignore -------------------------------------------------------------------------------- /gpt4_openai/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erol444/gpt4-openai-api/HEAD/gpt4_openai/__init__.py -------------------------------------------------------------------------------- /gpt4_openai/driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erol444/gpt4-openai-api/HEAD/gpt4_openai/driver.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erol444/gpt4-openai-api/HEAD/readme.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erol444/gpt4-openai-api/HEAD/setup.py -------------------------------------------------------------------------------- /test/.env-file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erol444/gpt4-openai-api/HEAD/test/.env-file -------------------------------------------------------------------------------- /test/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erol444/gpt4-openai-api/HEAD/test/test.py -------------------------------------------------------------------------------- /test/test_browsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erol444/gpt4-openai-api/HEAD/test/test_browsing.py -------------------------------------------------------------------------------- /test/test_code_interpretter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erol444/gpt4-openai-api/HEAD/test/test_code_interpretter.py -------------------------------------------------------------------------------- /test/test_continue_generating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erol444/gpt4-openai-api/HEAD/test/test_continue_generating.py -------------------------------------------------------------------------------- /test/test_dalle3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erol444/gpt4-openai-api/HEAD/test/test_dalle3.py -------------------------------------------------------------------------------- /test/test_langchain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Erol444/gpt4-openai-api/HEAD/test/test_langchain.py --------------------------------------------------------------------------------