Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
659323b
readme update v1
Rafi-Microsoft Dec 5, 2025
3fe32e2
fixed broken links
Rafi-Microsoft Dec 5, 2025
011dd86
fixed links
Rafi-Microsoft Dec 5, 2025
c624ca5
Update LocalDebuggingSetup.md: Format code blocks for better readability
Yatish-Microsoft Dec 10, 2025
9f235e5
Add CKM localhost screenshot and update LocalDebuggingSetup documenta…
Yatish-Microsoft Dec 10, 2025
546a9c9
Fix image path case sensitivity in LocalDebuggingSetup.md
Yatish-Microsoft Dec 10, 2025
355fee2
add ODBC Driver 17 for sql
cyberflying Dec 27, 2025
e9de57a
Updated Local Setup guide
Yatish-Microsoft Dec 31, 2025
78b69ac
Delete documents/LocalDebuggingSetup.md
Yatish-Microsoft Dec 31, 2025
c349aee
Add comprehensive Local Development Setup guide for Windows and Linux
Yatish-Microsoft Dec 31, 2025
8100f84
Merge branch 'ckmloc' of https://github.com/microsoft/Conversation-Kn…
Yatish-Microsoft Dec 31, 2025
82e983e
Merge branch 'dev' of https://github.com/microsoft/Conversation-Knowl…
Yatish-Microsoft Dec 31, 2025
1fcca2a
new commented changes added
Yatish-Microsoft Dec 31, 2025
551828d
troubleshooting
Yatish-Microsoft Dec 31, 2025
167337b
Updated as per the comments
Prekshith-Microsoft Jan 1, 2026
841cb03
Updated the fonts
Prekshith-Microsoft Jan 1, 2026
fc87da1
Resolved Pawan's comments
Prekshith-Microsoft Jan 2, 2026
a1816c0
updated with new steps
Rafi-Microsoft Jan 2, 2026
5d46e05
Verified and updated the matric data command
Prekshith-Microsoft Jan 2, 2026
44732e1
copilot feedback enhancements
Rafi-Microsoft Jan 2, 2026
608ed87
Merge dev branch, keeping local DeploymentGuide.md
Rafi-Microsoft Jan 2, 2026
bae368b
Fix section numbering in LocalDeploymentSetup.md
Pavan-Microsoft Jan 5, 2026
c30637c
chore: update package versions in requirements and package-lock files
Pavan-Microsoft Jan 7, 2026
81e6367
chore: revert semantic-kernel and openai package versions in requirem…
Pavan-Microsoft Jan 7, 2026
ab4a798
chore: downgrade React and TypeScript dependencies to compatible vers…
Pavan-Microsoft Jan 7, 2026
ab6e7a7
fix: dependent Bot changes - Update GitHub Actions Workflows and Back…
Avijit-Microsoft Jan 8, 2026
13da5e7
fix: consistemcy in commands used
Prajwal-Microsoft Jan 9, 2026
3ff2e99
Merge remote-tracking branch 'origin/dev' into ckmloc
Prajwal-Microsoft Jan 9, 2026
e301e3e
Merge pull request #686 from microsoft/ckmloc
Prajwal-Microsoft Jan 9, 2026
580354f
Added validation step for Inputs and Map Inputs to env
Vamshi-Microsoft Jan 9, 2026
779468f
Add Permissions
Vamshi-Microsoft Jan 9, 2026
54beb0b
fix: Refactor Azure CLI setup and environment variable handling in wo…
Vamshi-Microsoft Jan 9, 2026
73e669e
Merge pull request #725 from microsoft/psl-fix-security-vulnerabilities
Prajwal-Microsoft Jan 12, 2026
6f493b5
fix: add ODBC Driver 17 for sql when process custom data
Avijit-Microsoft Jan 12, 2026
5ed9403
feedback changes
Rafi-Microsoft Jan 12, 2026
e389224
Merge branch 'dev' into readme-update
Rafi-Microsoft Jan 12, 2026
cec1435
fixed broken link
Rafi-Microsoft Jan 12, 2026
5f48953
docs: Revise structure and enhance Deployment Guide
Avijit-Microsoft Jan 12, 2026
43c1c32
Resolve Conflict
NirajC-Microsoft Jan 12, 2026
a6ec1c5
chore: Resolve Conflict in deploy-KMGeneric.yml
Avijit-Microsoft Jan 12, 2026
5a97ac2
Merge branch 'main' into dev
Avijit-Microsoft Jan 12, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/azure-dev-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:

permissions:
contents: read
actions: read
id-token: write
pull-requests: write

Expand Down
19 changes: 7 additions & 12 deletions .github/workflows/bicep_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ jobs:

- name: Run Quota Check
id: quota-check
env:
AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }}
AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }}
AZURE_CLIENT_SECRET: ${{ secrets.AZURE_CLIENT_SECRET }}
AZURE_SUBSCRIPTION_ID: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
GPT_MIN_CAPACITY: "30"
AZURE_REGIONS: ${{ vars.AZURE_REGIONS }}
run: |
export AZURE_CLIENT_ID=${{ secrets.AZURE_CLIENT_ID }}
export AZURE_TENANT_ID=${{ secrets.AZURE_TENANT_ID }}
export AZURE_CLIENT_SECRET=${{ secrets.AZURE_CLIENT_SECRET }}
export AZURE_SUBSCRIPTION_ID="${{ secrets.AZURE_SUBSCRIPTION_ID }}"
export GPT_MIN_CAPACITY="30"
export AZURE_REGIONS="${{ vars.AZURE_REGIONS }}"

chmod +x infra/scripts/checkquota_ckmv2.sh
if ! infra/scripts/checkquota_ckmv2.sh; then
# If quota check fails due to insufficient quota, set the flag
Expand Down Expand Up @@ -55,11 +55,6 @@ jobs:
echo "Selected Region: $VALID_REGION"
echo "AZURE_LOCATION=$VALID_REGION" >> $GITHUB_ENV

- name: Setup Azure CLI
run: |
curl -sL https://aka.ms/InstallAzureCLIDeb | sudo bash
az --version # Verify installation

- name: Login to Azure
run: |
az login --service-principal -u ${{ secrets.AZURE_CLIENT_ID }} -p ${{ secrets.AZURE_CLIENT_SECRET }} --tenant ${{ secrets.AZURE_TENANT_ID }}
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/broken-links-checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:

permissions:
contents: read
actions: read

jobs:
markdown-link-check:
Expand Down
29 changes: 14 additions & 15 deletions .github/workflows/deploy-KMGeneric.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ on:
schedule:
- cron: '0 9,21 * * *' # Runs at 9:00 AM and 9:00 PM GMT
workflow_dispatch: # Allow manual triggering

permissions:
contents: read
actions: read

env:
GPT_MIN_CAPACITY: 150
TEXT_EMBEDDING_MIN_CAPACITY: 80
Expand All @@ -26,23 +31,21 @@ jobs:
steps:
- name: Checkout Code
uses: actions/checkout@v6
- name: Setup Azure CLI
run: |
curl -sL https://aka.ms/InstallAzureCLIDeb | sudo bash
az --version

- name: Login to Azure
run: |
az login --service-principal -u ${{ secrets.AZURE_CLIENT_ID }} -p ${{ secrets.AZURE_CLIENT_SECRET }} --tenant ${{ secrets.AZURE_TENANT_ID }}
- name: Run Quota Check
id: quota-check
env:
AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }}
AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }}
AZURE_CLIENT_SECRET: ${{ secrets.AZURE_CLIENT_SECRET }}
AZURE_SUBSCRIPTION_ID: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
GPT_MIN_CAPACITY: ${{ env.GPT_MIN_CAPACITY }}
TEXT_EMBEDDING_MIN_CAPACITY: ${{ env.TEXT_EMBEDDING_MIN_CAPACITY }}
AZURE_REGIONS: ${{ vars.AZURE_REGIONS_KM }}
run: |
export AZURE_CLIENT_ID=${{ secrets.AZURE_CLIENT_ID }}
export AZURE_TENANT_ID=${{ secrets.AZURE_TENANT_ID }}
export AZURE_CLIENT_SECRET=${{ secrets.AZURE_CLIENT_SECRET }}
export AZURE_SUBSCRIPTION_ID="${{ secrets.AZURE_SUBSCRIPTION_ID }}"
export GPT_MIN_CAPACITY=${{ env.GPT_MIN_CAPACITY }}
export TEXT_EMBEDDING_MIN_CAPACITY=${{ env.TEXT_EMBEDDING_MIN_CAPACITY }}
export AZURE_REGIONS="${{ vars.AZURE_REGIONS_KM }}"
chmod +x infra/scripts/checkquota_km.sh
if ! infra/scripts/checkquota_km.sh; then
# If quota check fails due to insufficient quota, set the flag
Expand Down Expand Up @@ -191,10 +194,6 @@ jobs:
env:
RESOURCE_GROUP_NAME: ${{ needs.deploy.outputs.RESOURCE_GROUP_NAME }}
steps:
- name: Setup Azure CLI
run: |
curl -sL https://aka.ms/InstallAzureCLIDeb | sudo bash
az --version
- name: Login to Azure
run: |
az login --service-principal -u ${{ secrets.AZURE_CLIENT_ID }} -p ${{ secrets.AZURE_CLIENT_SECRET }} --tenant ${{ secrets.AZURE_TENANT_ID }}
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/deploy-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,10 @@ on:
default: ''
type: string

permissions:
contents: read
actions: read

jobs:
Run:
uses: ./.github/workflows/deploy-orchestrator.yml
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/deploy-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,10 @@ on:
default: ''
type: string

permissions:
contents: read
actions: read

jobs:
Run:
uses: ./.github/workflows/deploy-orchestrator.yml
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ on:
- demo
workflow_dispatch:

permissions:
contents: read
actions: read

jobs:
build-and-push:
runs-on: ubuntu-latest
Expand Down
Loading