Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
d0ec9d0
feat: Implement Enterprise Chat Agent with Azure Functions
vj-msft Dec 8, 2025
1e3ec83
Implement observability design for Enterprise Chat Agent with OpenTel…
vj-msft Dec 10, 2025
5046f67
Merge remote-tracking branch 'origin/main' into issue-2436
vj-msft Mar 24, 2026
ba26083
feat: Implement Enterprise Chat Agent with Cosmos DB and Azure Functions
vj-msft Mar 24, 2026
8c7634d
Refactor Enterprise Chat Agent design and observability
vj-msft Mar 25, 2026
546a105
feat(python): Add enterprise chat agent sample with Azure Functions a…
vj-msft Mar 25, 2026
06da24d
Copilot review comments fixed
vj-msft Mar 26, 2026
3b545d4
Merge branch 'microsoft:main' into issue-2436
vj-msft Mar 26, 2026
2851f44
Review comment fixed
vj-msft Mar 26, 2026
c3d212e
Merge branch 'issue-2436' of https://github.com/vj-msft/agent-framewo…
vj-msft Mar 26, 2026
c17d24a
Update design document references for clarity and relevance
vj-msft Mar 26, 2026
e57d2a2
Refactor query construction in CosmosConversationStore and add securi…
vj-msft Mar 26, 2026
6d621b6
Refactor type hints to use union syntax for optional types in multipl…
vj-msft Mar 26, 2026
9c8b91c
Merge branch 'main' into issue-2436
vj-msft Mar 27, 2026
0a7e48e
Merge branch 'main' into issue-2436
vj-msft Mar 27, 2026
0162a9a
Merge branch 'main' into issue-2436
vj-msft Mar 31, 2026
716b313
Merge branch 'main' into issue-2436
vj-msft Apr 1, 2026
ecceb3e
Merge branch 'main' into issue-2436
vj-msft Apr 9, 2026
8b8af1e
Merge branch 'main' into issue-2436
vj-msft Apr 27, 2026
9d98388
Python: update dependencies and refactor Azure OpenAI client usage
vj-msft Apr 27, 2026
71e5a46
Merge branch 'main' into issue-2436
vj-msft May 1, 2026
3698036
Update README and design documents; refactor session handling in mess…
vj-msft May 1, 2026
33ade53
Merge branch 'issue-2436' of https://github.com/vj-msft/agent-framewo…
vj-msft May 1, 2026
93de535
Merge branch 'main' into issue-2436
vj-msft May 6, 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
61 changes: 61 additions & 0 deletions python/samples/05-end-to-end/enterprise-chat-agent/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg

# Virtual environments
.venv/
venv/
ENV/
env/

# Azure Functions
local.settings.json
.python_packages/
.func/

# Azure Developer CLI
.azure/

# IDE
.vscode/
.idea/
*.swp
*.swo
*~

# OS
.DS_Store
Thumbs.db

# Testing
.pytest_cache/
.coverage
htmlcov/
.tox/
.nox/

# Logs
*.log
logs/

# Environment variables
.env
.env.local
Loading
Loading