Added CopilotStudioAgent implementation

This commit is contained in:
Dmytro Struk
2025-09-11 15:09:20 -07:00
Unverified
parent 54a9cba305
commit efb19f9959
14 changed files with 653 additions and 24 deletions
@@ -0,0 +1,28 @@
# Copyright (c) Microsoft. All rights reserved.
def test_self_through_main() -> None:
try:
from agent_framework.copilotstudio import __version__
except ImportError:
__version__ = None
assert __version__ is not None
def test_self() -> None:
try:
from agent_framework_copilotstudio import __version__
except ImportError:
__version__ = None
assert __version__ is not None
def test_agent_framework() -> None:
try:
from agent_framework import __version__
except ImportError:
__version__ = None
assert __version__ is not None