├── .github ├── CODE_OF_CONDUCT.md ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── 01-create-table.sql ├── 02-load-table.sql ├── 03-create-http-credentials.sql ├── 04-get-search-vector.sql ├── 05-get-similar-items.sql ├── 06-chat-with-data.sql ├── 07-chat-with-data-structured-output.sql ├── 08-get_embedding.sql ├── 09-new-data.sql ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md └── assets ├── azure-sql-cosine-similarity-vector-type.gif ├── azure-sql-rag.png └── cosine-similarity-search-result.png /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-sql-db-chatbot/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-sql-db-chatbot/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-sql-db-chatbot/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-sql-db-chatbot/HEAD/.gitignore -------------------------------------------------------------------------------- /01-create-table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-sql-db-chatbot/HEAD/01-create-table.sql -------------------------------------------------------------------------------- /02-load-table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-sql-db-chatbot/HEAD/02-load-table.sql -------------------------------------------------------------------------------- /03-create-http-credentials.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-sql-db-chatbot/HEAD/03-create-http-credentials.sql -------------------------------------------------------------------------------- /04-get-search-vector.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-sql-db-chatbot/HEAD/04-get-search-vector.sql -------------------------------------------------------------------------------- /05-get-similar-items.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-sql-db-chatbot/HEAD/05-get-similar-items.sql -------------------------------------------------------------------------------- /06-chat-with-data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-sql-db-chatbot/HEAD/06-chat-with-data.sql -------------------------------------------------------------------------------- /07-chat-with-data-structured-output.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-sql-db-chatbot/HEAD/07-chat-with-data-structured-output.sql -------------------------------------------------------------------------------- /08-get_embedding.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-sql-db-chatbot/HEAD/08-get_embedding.sql -------------------------------------------------------------------------------- /09-new-data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-sql-db-chatbot/HEAD/09-new-data.sql -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-sql-db-chatbot/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-sql-db-chatbot/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-sql-db-chatbot/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-sql-db-chatbot/HEAD/README.md -------------------------------------------------------------------------------- /assets/azure-sql-cosine-similarity-vector-type.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-sql-db-chatbot/HEAD/assets/azure-sql-cosine-similarity-vector-type.gif -------------------------------------------------------------------------------- /assets/azure-sql-rag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-sql-db-chatbot/HEAD/assets/azure-sql-rag.png -------------------------------------------------------------------------------- /assets/cosine-similarity-search-result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-sql-db-chatbot/HEAD/assets/cosine-similarity-search-result.png --------------------------------------------------------------------------------