|
1 | 1 | # ChatGPT + Enterprise data with Azure OpenAI and Cognitive Search - Java Version
|
2 | 2 |
|
| 3 | +<!-- TOC --> |
| 4 | + |
| 5 | +* [Open this project](#open-this-project) |
| 6 | +* [Features](#features) |
| 7 | +* [RAG Implementation Options](#rag-implementation-options) |
| 8 | +* [Getting Started](#getting-started) |
| 9 | + * [Prerequisites](#prerequisites) |
| 10 | + * [Cost estimation](#cost-estimation) |
| 11 | + * [Starting from scratch](#starting-from-scratch) |
| 12 | + * [Deploying with existing Azure resources](#deploying-with-existing-azure-resources) |
| 13 | + * [Existing resource group](#existing-resource-group) |
| 14 | + * [Existing OpenAI resource](#existing-openai-resource) |
| 15 | + * [Existing Azure Cognitive Search resource](#existing-azure-cognitive-search-resource) |
| 16 | + * [Other existing Azure resources](#other-existing-azure-resources) |
| 17 | + * [Provision remaining resources](#provision-remaining-resources) |
| 18 | + * [Deploying again](#deploying-again) |
| 19 | + * [Running locally](#running-locally) |
| 20 | + * [To Run in GitHub Codespaces or VS Code Remote Containers](#to-run-in-github-codespaces-or-vs-code-remote-containers) |
| 21 | + * [UI Navigation](#ui-navigation) |
| 22 | +* [Enabling optional features](#enabling-optional-features) |
| 23 | + * [Enabling Application Insights](#enabling-application-insights) |
| 24 | + * [Enabling authentication](#enabling-authentication) |
| 25 | +* [App Continuous Integration](#app-continuous-integration) |
| 26 | + * [GitHub](#github) |
| 27 | + * [Azure DevOps](#azure-devops) |
| 28 | +* [Custom Data Ingestion and Indexing](#custom-data-ingestion-and-indexing) |
| 29 | +* [Productionizing](#productionizing) |
| 30 | +* [Resources](#resources) |
| 31 | + * [Note](#note) |
| 32 | + * [FAQ](#faq) |
| 33 | + * [Troubleshooting](#troubleshooting) |
| 34 | +<!-- TOC --> |
| 35 | + |
3 | 36 | This repo is the java conversion of the well known [ChatGPT + Enterprise data code sample](https://github.com/Azure-Samples/azure-search-openai-demo) originally written in python.
|
4 | 37 | It demonstrates a few approaches for creating ChatGPT-like experiences over your own data using the Retrieval Augmented Generation pattern. It uses Azure OpenAI Service to access the ChatGPT model (gpt-35-turbo), and Azure Cognitive Search for data indexing and retrieval.
|
5 | 38 |
|
|
0 commit comments