SkillUp is a study planner that can generate customized study plans for workers with reskilling and upskilling needs and provide the relevant resources. The study plan includes link to access the resources and daily learning schedule which is generated based on the user’s education background, study style, interest etc. We aim to assist the unemployed in accessing relevant learning materials to improve themselves and enhance their competitiveness in the job market.
It demonstrates an approach 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. It also incorporate with speech services 3D avatars to provide a more interactive user experience.
- ChatGPT style interface
- Customized study plan generation
- Quizzes, to-do list and dashboard
Start by installing all prerequisites, then browse to the project directory and run ./start.sh
to start the project.
IMPORTANT: In order to deploy and run this example, you'll need an Azure subscription with access enabled for the Azure OpenAI service. You can request access here. You can also visit here to get some free Azure credits to get you started. This workshop will bu using the HKU Innowing Subscription account.
AZURE RESOURCE COSTS by default this sample will create Azure App Service and Azure Cognitive Search resources that have a monthly cost, as well as Form Recognizer resource that has cost per document page. You can switch them to free versions of each of them if you want to avoid this cost by changing the parameters file under the infra folder (though there are some limits to consider; for example, you can have up to 1 free Cognitive Search resource per subscription, and the free Form Recognizer resource only analyzes the first 2 pages of each document.)
- Python 3+
- Important: Python and the pip package manager must be in the path in Windows for the setup scripts to work.
- Important: Ensure you can run
python --version
from console. On Ubuntu, you might need to runsudo apt install python-is-python3
to linkpython
topython3
.
- Node.js
- Git
- Powershell 7+ (pwsh) - For Windows users only.
- Important: Ensure you can run
pwsh.exe
from a PowerShell command. If this fails, you likely need to upgrade PowerShell.
- Important: Ensure you can run
ENV_Var | Value |
---|---|
AZURE_FORMRECOGNIZER_KEY | |
AZURE_OPENAI_KEY | |
AZURE_SEARCH_INDEX | vector-index |
AZURE_SEARCH_KEY | |
- Revolutionize your Enterprise Data with ChatGPT: Next-gen Apps w/ Azure OpenAI and Cognitive Search
- Azure Cognitive Search
- Azure OpenAI Service
Question: Why do we need to break up the PDFs into chunks when Azure Cognitive Search supports searching large documents?
Answer: Chunking allows us to limit the amount of information we send to OpenAI due to token limits. By breaking up the content, it allows us to easily find potential chunks of text that we can inject into OpenAI. The method of chunking we use leverages a sliding window of text such that sentences that end one chunk will start the next. This allows us to reduce the chance of losing the context of the text.