├── .gitignore ├── LICENSE ├── README.md ├── docker ├── Dockerfile ├── build_docker.sh ├── local_run_docker.sh ├── local_run_docker_notebook.sh └── start_notebook.sh ├── images ├── openmldb_chatgpt_cli.png ├── prompt1-1.png ├── prompt1.png ├── prompt2-1.png ├── prompt2-2.png ├── prompt2.png ├── prompt3.png ├── prompt4.png ├── prompt5.png └── prompt6.png ├── openmldb_chatgpt ├── __init__.py ├── cli.py ├── config_util.py ├── gpt_manager.py ├── help_util.py ├── history.txt ├── openmldb_manager.py ├── print_util.py └── sql_util.py ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/openmldb-chatgpt-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/openmldb-chatgpt-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/openmldb-chatgpt-plugin/HEAD/README.md -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/openmldb-chatgpt-plugin/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/build_docker.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | docker build -t tobegit3hub/openmldb-chatgpt . 4 | -------------------------------------------------------------------------------- /docker/local_run_docker.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | docker run -it tobegit3hub/openmldb-chatgpt 4 | -------------------------------------------------------------------------------- /docker/local_run_docker_notebook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/openmldb-chatgpt-plugin/HEAD/docker/local_run_docker_notebook.sh -------------------------------------------------------------------------------- /docker/start_notebook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/openmldb-chatgpt-plugin/HEAD/docker/start_notebook.sh -------------------------------------------------------------------------------- /images/openmldb_chatgpt_cli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/openmldb-chatgpt-plugin/HEAD/images/openmldb_chatgpt_cli.png -------------------------------------------------------------------------------- /images/prompt1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/openmldb-chatgpt-plugin/HEAD/images/prompt1-1.png -------------------------------------------------------------------------------- /images/prompt1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/openmldb-chatgpt-plugin/HEAD/images/prompt1.png -------------------------------------------------------------------------------- /images/prompt2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/openmldb-chatgpt-plugin/HEAD/images/prompt2-1.png -------------------------------------------------------------------------------- /images/prompt2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/openmldb-chatgpt-plugin/HEAD/images/prompt2-2.png -------------------------------------------------------------------------------- /images/prompt2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/openmldb-chatgpt-plugin/HEAD/images/prompt2.png -------------------------------------------------------------------------------- /images/prompt3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/openmldb-chatgpt-plugin/HEAD/images/prompt3.png -------------------------------------------------------------------------------- /images/prompt4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/openmldb-chatgpt-plugin/HEAD/images/prompt4.png -------------------------------------------------------------------------------- /images/prompt5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/openmldb-chatgpt-plugin/HEAD/images/prompt5.png -------------------------------------------------------------------------------- /images/prompt6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/openmldb-chatgpt-plugin/HEAD/images/prompt6.png -------------------------------------------------------------------------------- /openmldb_chatgpt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/openmldb-chatgpt-plugin/HEAD/openmldb_chatgpt/__init__.py -------------------------------------------------------------------------------- /openmldb_chatgpt/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/openmldb-chatgpt-plugin/HEAD/openmldb_chatgpt/cli.py -------------------------------------------------------------------------------- /openmldb_chatgpt/config_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/openmldb-chatgpt-plugin/HEAD/openmldb_chatgpt/config_util.py -------------------------------------------------------------------------------- /openmldb_chatgpt/gpt_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/openmldb-chatgpt-plugin/HEAD/openmldb_chatgpt/gpt_manager.py -------------------------------------------------------------------------------- /openmldb_chatgpt/help_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/openmldb-chatgpt-plugin/HEAD/openmldb_chatgpt/help_util.py -------------------------------------------------------------------------------- /openmldb_chatgpt/history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/openmldb-chatgpt-plugin/HEAD/openmldb_chatgpt/history.txt -------------------------------------------------------------------------------- /openmldb_chatgpt/openmldb_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/openmldb-chatgpt-plugin/HEAD/openmldb_chatgpt/openmldb_manager.py -------------------------------------------------------------------------------- /openmldb_chatgpt/print_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/openmldb-chatgpt-plugin/HEAD/openmldb_chatgpt/print_util.py -------------------------------------------------------------------------------- /openmldb_chatgpt/sql_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/openmldb-chatgpt-plugin/HEAD/openmldb_chatgpt/sql_util.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/openmldb-chatgpt-plugin/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobegit3hub/openmldb-chatgpt-plugin/HEAD/setup.py --------------------------------------------------------------------------------