Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Python: Bedrock agent #10307

Open
wants to merge 26 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
d3e69bd
Bedrock agent init and tools
TaoChenOSU Jan 21, 2025
e62a707
Knowledge base and readme
TaoChenOSU Jan 21, 2025
1a73139
Add agent invoke method
TaoChenOSU Jan 21, 2025
3a1e1ff
Bedrock agent simple chat sample
TaoChenOSU Jan 22, 2025
923a618
Bedrock agent streaming
TaoChenOSU Jan 23, 2025
8cad1bc
Function calling in progress
TaoChenOSU Jan 23, 2025
757b61f
Function calling non streaming working
TaoChenOSU Jan 24, 2025
71b735e
Function calling streaming working
TaoChenOSU Jan 24, 2025
fda4036
Minor update to samples
TaoChenOSU Jan 24, 2025
09a58ac
Enable code interpreter
TaoChenOSU Jan 25, 2025
9fa7eda
Merge branch 'main' into local-branch-bedrock-agent
TaoChenOSU Jan 27, 2025
89cd5bc
Refactor agent channel folder
TaoChenOSU Jan 27, 2025
d966f20
Revert "Refactor agent channel folder"
TaoChenOSU Jan 27, 2025
b8efd71
Add bedrock agent channel
TaoChenOSU Jan 28, 2025
df6fed7
Refactor samples
TaoChenOSU Jan 28, 2025
2e49ad9
Documentation
TaoChenOSU Jan 28, 2025
3ed873b
Merge branch 'main' into local-branch-bedrock-agent
TaoChenOSU Jan 29, 2025
439dc62
Address comments first batch
TaoChenOSU Jan 29, 2025
4740657
Address comments second batch
TaoChenOSU Jan 30, 2025
a26d902
Address comments third batch
TaoChenOSU Jan 30, 2025
40bc545
Add more samples
TaoChenOSU Jan 30, 2025
483571a
Address comment forth batch
TaoChenOSU Jan 30, 2025
b4c2941
Fix pipeline
TaoChenOSU Jan 31, 2025
59ce3b4
Fix pipeline 2
TaoChenOSU Jan 31, 2025
2e40708
Fix pipeline 3
TaoChenOSU Jan 31, 2025
e44fa57
Fix Google dependency versions
TaoChenOSU Jan 31, 2025
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
Prev Previous commit
Next Next commit
Fix pipeline 2
  • Loading branch information
TaoChenOSU committed Jan 31, 2025
commit 59ce3b470ab5b9c95f1a6a65214a8c2f01c0db55
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# Copyright (c) Microsoft. All rights reserved.


from enum import StrEnum
from enum import Enum

from semantic_kernel.utils.experimental_decorator import experimental_class


@experimental_class
class BedrockAgentStatus(StrEnum):
class BedrockAgentStatus(str, Enum):
"""Bedrock Agent Status.

https://docs.aws.amazon.com/bedrock/latest/APIReference/API_agent_PrepareAgent.html#API_agent_PrepareAgent_ResponseElements
Expand Down
Loading
Loading