Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
eacfc19
Implemented custom developer experince
Vemarthula-Microsoft Dec 19, 2025
5b20563
refactor: Update YAML configurations and enhance service hooks for AP…
Vemarthula-Microsoft Dec 29, 2025
6527e40
refactor: Clean up azure.yaml by removing unused infrastructure and s…
Vemarthula-Microsoft Dec 30, 2025
6e81262
refactor: Simplify webapp packaging scripts and update build process …
Vemarthula-Microsoft Dec 30, 2025
bcc518f
docs: Add instructions for deploying local changes in Deployment Guide
Vemarthula-Microsoft Dec 30, 2025
c80eec6
Merge remote-tracking branch 'origin/dev' into ve-devEXP
Vemarthula-Microsoft Dec 30, 2025
3ce0aa7
refactor: Update webapp packaging scripts to write API URL to .env.pr…
Vemarthula-Microsoft Dec 30, 2025
0328702
refactor: Update .env file to set REACT_APP_API_BASE_URL directly
Vemarthula-Microsoft Dec 30, 2025
a23b5ea
Change roleName to Custom Data Contributor with unique string
Vemarthula-Microsoft Dec 31, 2025
b4a492f
Refine parameter descriptions in main_custom.bicep
Vemarthula-Microsoft Jan 2, 2026
3a5b012
Update Bicep modules and parameters for AI services
Vemarthula-Microsoft Jan 5, 2026
c5eef9c
Merge branch 'dev' into ve-devEXP
Harsh-Microsoft Jan 19, 2026
c4d4896
refactor: update webapp packaging scripts and improve output messages
Harsh-Microsoft Jan 20, 2026
166a0f6
add node in devcontainer configuration
Harsh-Microsoft Jan 20, 2026
3f5ae2e
fix: silently ignore parse errors for incomplete JSON chunks during s…
Pavan-Microsoft Jan 21, 2026
d10620f
Merge pull request #703 from microsoft/ve-devEXP
Roopan-Microsoft Jan 21, 2026
885188c
fix: Ignore parse errors for incomplete JSON chunks during streaming
Avijit-Microsoft Jan 21, 2026
ec27847
Merge pull request #751 from microsoft/main
Avijit-Microsoft Jan 22, 2026
afadcc2
refactor: enhance citation handling in conversation and chat plugins
Pavan-Microsoft Jan 22, 2026
0122939
fix: remove unnecessary whitespace and improve citation filtering logic
Pavan-Microsoft Jan 23, 2026
743ec53
fix: improve citation mapping logic to handle out-of-range markers an…
Pavan-Microsoft Jan 23, 2026
bb1d95f
test: add unit tests for citation mapping with out-of-order and out-o…
Pavan-Microsoft Jan 23, 2026
5cd6b97
test: add unit tests for handling out-of-range and repeated citation …
Pavan-Microsoft Jan 23, 2026
cb40a58
fix: streamline citation handling in test cases by using RunStepToolC…
Pavan-Microsoft Jan 23, 2026
824a769
fix: fix for citation numbers displayed in the response do not match …
Avijit-Microsoft Jan 23, 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
3 changes: 2 additions & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
"ghcr.io/devcontainers/features/docker-in-docker:2": {},
"ghcr.io/jlaundry/devcontainer-features/mssql-odbc-driver:1": {
"version": "18"
}
},
"ghcr.io/devcontainers/features/node:1": {}
},
"customizations": {
"vscode": {
Expand Down
42 changes: 42 additions & 0 deletions azure_custom.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: conversation-knowledge-mining

requiredVersions:
azd: ">= 1.18.0"

metadata:
template: conversation-knowledge-mining@1.0

infra:
provider: bicep
path: infra
module: main
parameters: infra/main.parameters.json

services:
api:
project: ./src/api
language: py
host: appservice
webapp:
project: ./src/App
language: js
host: appservice

hooks:
postprovision:
windows:
shell: pwsh
continueOnError: false
interactive: true
run: |
Write-Host "Web app URL: $env:WEB_APP_URL" -ForegroundColor Cyan
Write-Host "`nRun the following command in bash, if sample data needs to be processed:`nbash ./infra/scripts/process_sample_data.sh" -ForegroundColor Yellow
posix:
shell: sh
continueOnError: false
interactive: true
run: |
echo "Web app URL: $WEB_APP_URL"
echo ""
echo "Run the following command in bash, if sample data needs to be processed:"
echo "bash ./infra/scripts/process_sample_data.sh"
Loading