Azure-Language-OpenAI-Conversational-Agent-Accelerator
A solution accelerator project harnessing the capabilities of Azure AI Language to augment an existing Azure OpenAI RAG chat app. Utilize Conversational Language Understanding (CLU) and Custom Question Answering (CQA) to dynamically improve a RAG chat experience.
File Explorer
Download Latest Version (.zip)- devcontainer.json
- azure-dev.yml
- CODEOWNERS
- ISSUE_TEMPLATE.md
- PULL_REQUEST_TEMPLATE.md
- launch.json
- architecture.png
- quick_deploy.png
- sk_flow_translate.png
- ui.png
- user_story.png
- azure_account_set_up.md
- azure_semantic_search_region.md
- check_quota_settings.md
- customizing_azd_parameters.md
- delete_resource_group.md
- product_info_1.md
- product_info_10.md
- product_info_11.md
- product_info_12.md
- product_info_13.md
- product_info_14.md
- product_info_15.md
- product_info_16.md
- product_info_17.md
- product_info_18.md
- product_info_19.md
- product_info_2.md
- product_info_20.md
- product_info_3.md
- product_info_4.md
- product_info_5.md
- product_info_6.md
- product_info_7.md
- product_info_8.md
- product_info_9.md
- clu_import.json
- cqa_import.json
- LICENSE-DATA.txt
- orchestration_import.json
- product_info.tar.gz
- clu.json
- clu_convai.json
- cqa.json
- translation.json
- ai_foundry.bicep
- container_instance.bicep
- managed_identity.bicep
- role_assignments.bicep
- search_service.bicep
- storage_account.bicep
- agent_setup.py
- clu_setup.py
- cqa_setup.py
- orchestration_setup.py
- README.md
- requirements.txt
- run_agent_setup.sh
- run_language_setup.sh
- utils.py
- index_setup.py
- README.md
- requirements.txt
- run_search_setup.sh
- run_container_app.sh
- main.bicep
- main.bicepparam
- main.json
- setup_azd_parameters.sh
- order_cancel_plugin.py
- order_refund_plugin.py
- order_status_plugin.py
- extract_utterances.txt
- function_calling.txt
- rag_grounding.txt
- clu_router.py
- cqa_router.py
- function_calling_router.py
- orchestration_router.py
- router_type.py
- router_utils.py
- triage_agent_router.py
- groupchat_client.py
- handoff_client.py
- requirements.txt
- test_sk_chat.py
- test_unified_chat.py
- get_clu.json
- get_cqa.json
- aoai_client.py
- clu_hooks.py
- pii_redacter.py
- semantic_kernel_app.py
- semantic_kernel_orchestrator.py
- unified_app.py
- unified_conversation_orchestrator.py
- utils.py
- requirements.txt
- App.css
- App.jsx
- Chat.jsx
- main.jsx
- index.html
- package.json
- vite.config.js
- Dockerfile
- README.md
- .gitignore
- azure.yaml
- CODE_OF_CONDUCT.md
- CONTRIBUTING.md
- LICENSE.md
- NOTICE.txt
- RAI_FAQ.md
- README.md
- SECURITY.md
- SUPPORT.md
# Installation Guide
git clone https://github.com/Azure-Samples/Azure-Language-OpenAI-Conversational-Agent-Accelerator
Downloads the entire project code from GitHub to your computer.
cd Azure-Language-OpenAI-Conversational-Agent-Accelerator
Moves into the project folder you just downloaded.
2. Docker
Easy Recommended- Git Needed to download the project code from GitHub.
- Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
docker build -f src/Dockerfile -t azure-language-openai-conversational-agent-accelerator .
Builds a runnable image based on the Dockerfile.
docker run -p 8080:80 azure-language-openai-conversational-agent-accelerator
Runs the built image as an actual container.
3. Node.js
Easycd src/frontend
This project's files live in a subfolder, so move into it first.
npm install
Downloads and installs the libraries listed in package.json.
npm start
Starts the development/run server.
4. Python
Easypip install -r infra/scripts/language/requirements.txt
Installs the Python libraries listed in requirements.txt (or similar).
python <์คํํ ํ์ผ๋ช
>.py # README์์ ์ ํํ ์คํ ํ์ผ๋ช
์ ํ์ธํ์ธ์
Runs the Python script (or module).
