Skip to content

Latest commit

 

History

History
70 lines (47 loc) · 3.08 KB

File metadata and controls

70 lines (47 loc) · 3.08 KB

AVM Post Deployment Guide

📋 Note: This guide is specifically for post-deployment steps after using the AVM template. For complete deployment from scratch, see the main deployment guide.


This document provides guidance on post-deployment steps after deploying the Chat with your data - Solution accelerator from the AVM (Azure Verified Modules) repository.

Pre-requisites

Ensure you have a Deployed Infrastructure - A successful Chat with your data - Solution accelerator deployment from the AVM repository

Post Deployment Steps

Step 1: Run the Post-Deployment Setup Script

Run the post-deployment setup script to configure the Function App client key and create PostgreSQL tables (if applicable). Open Azure Cloud Shell (Bash) and run:

az login
git clone https://github.com/Azure-Samples/chat-with-your-data-solution-accelerator.git
cd chat-with-your-data-solution-accelerator
bash scripts/post_deployment_setup.sh "<your-resource-group-name>"

Step 2: Configure App Authentication

  1. After deployment is complete, navigate to your Azure App Service in the Azure portal
  2. Follow the detailed instructions in Set Up Authentication in Azure App Service to add authentication to your web app
  3. This will ensure only authorized users can access your application

Step 3: Access and Configure the Admin Site

  1. Navigate to the admin site using the following URL pattern:

    https://web-{unique-token}-admin.azurewebsites.net/
    
  2. Upload your documents:

    • Select Ingest Data from the admin interface
    • Upload your documents using the drag-and-drop interface
    • For testing purposes, you can use the sample data located in the /data directory of this repository

    Admin site interface

  3. Monitor the ingestion process:

    • Wait for the documents to be processed and indexed
    • Verify successful ingestion through the admin interface

Step 4: Access the Chat Application

  1. Navigate to the main chat application using this URL pattern:

    https://web-{unique-token}.azurewebsites.net/
    
  2. Test the chat functionality:

    • Start a conversation by asking questions about your uploaded documents
    • Verify that the AI responds with relevant information from your data

    Chat application interface

Next Steps

Consider these additional configurations for enhanced functionality: