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

SK assistant for agentchat #5134

Open
wants to merge 29 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
74c9671
initial sk assistant agent implementation
lpinheiroms Jan 22, 2025
3a1396a
handle chat message types
lpinheiroms Jan 22, 2025
6746e82
add unit tests
lpinheiroms Jan 24, 2025
573bb0d
add docstring and lint
lpinheiroms Jan 24, 2025
aa24748
add docs
lpinheiroms Jan 24, 2025
418b1b8
Merge branch 'main' into feat/add-sk-assistant-agent
lspinheiro Jan 24, 2025
d6d7b15
doc example lint
lpinheiroms Jan 24, 2025
fea7ecc
update toctree
lpinheiroms Jan 24, 2025
b6e941b
remove partial messages
lpinheiroms Jan 24, 2025
05f8cd9
Merge branch 'main' into feat/add-sk-assistant-agent
lspinheiro Jan 24, 2025
3debf1c
Merge branch 'main' into feat/add-sk-assistant-agent
lspinheiro Jan 25, 2025
7e23d71
Merge branch 'main' into feat/add-sk-assistant-agent
lspinheiro Jan 27, 2025
b91a09f
Merge branch 'main' into feat/add-sk-assistant-agent
rysweet Jan 31, 2025
fa1e2f2
Merge branch 'main' into feat/add-sk-assistant-agent
rysweet Feb 2, 2025
38afae4
Merge branch 'main' into feat/add-sk-assistant-agent
lspinheiro Feb 11, 2025
47e87cb
Merge branch 'main' into feat/add-sk-assistant-agent
lspinheiro Feb 12, 2025
3ba6661
validate prompt args to enforce function auto exec
lpinheiroms Feb 13, 2025
0842e5f
update stream call event processing
lpinheiroms Feb 18, 2025
f4122e4
Merge branch 'main' into feat/add-sk-assistant-agent
lspinheiro Feb 18, 2025
09d8ae1
fix test
lpinheiroms Feb 19, 2025
761c731
improve testing coverage
lpinheiroms Feb 19, 2025
1c847f0
add simpler example
lpinheiroms Feb 19, 2025
3b65aba
Merge branch 'main' into feat/add-sk-assistant-agent
lspinheiro Feb 19, 2025
13d4e5c
typing fixes
lpinheiroms Feb 19, 2025
50230a9
doc example typing fix
lpinheiroms Feb 19, 2025
b28543f
Merge branch 'main' into feat/add-sk-assistant-agent
lspinheiro Feb 19, 2025
5b6ef2e
add doc references
lpinheiroms Feb 19, 2025
15fd09c
Merge branch 'main' into feat/add-sk-assistant-agent
lspinheiro Feb 19, 2025
8027f89
Merge branch 'main' into feat/add-sk-assistant-agent
lspinheiro Feb 21, 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
1 change: 1 addition & 0 deletions python/packages/autogen-core/docs/src/reference/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ python/autogen_core.logging

python/autogen_ext.agents.magentic_one
python/autogen_ext.agents.openai
python/autogen_ext.agents.semantic_kernel
python/autogen_ext.agents.web_surfer
python/autogen_ext.agents.file_surfer
python/autogen_ext.agents.video_surfer
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
autogen\_ext.agents.semantic_kernel
====================================


.. automodule:: autogen_ext.agents.semantic_kernel
:members:
:undoc-members:
:show-inheritance:
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from ._sk_assistant_agent import SKAssistantAgent

__all__ = ["SKAssistantAgent"]
Loading
Loading