mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
Fix imports
This commit is contained in:
@@ -1,20 +1,20 @@
|
||||
# Copyright (c) Microsoft. All rights reserved.
|
||||
|
||||
__version__ = "0.1.0"
|
||||
__all__ = []
|
||||
"""Azure Durable Agent Function App.
|
||||
|
||||
This package provides integration between Microsoft Agent Framework and Azure Durable Functions,
|
||||
enabling durable, stateful AI agents deployed as Azure Function Apps.
|
||||
"""
|
||||
import importlib.metadata
|
||||
|
||||
from ._app import AgentFunctionApp
|
||||
from ._callbacks import AgentCallbackContext, AgentResponseCallbackProtocol
|
||||
from ._orchestration import DurableAIAgent
|
||||
|
||||
try:
|
||||
__version__ = importlib.metadata.version(__name__)
|
||||
except importlib.metadata.PackageNotFoundError:
|
||||
__version__ = "0.0.0" # Fallback for development mode
|
||||
|
||||
__all__ = [
|
||||
"AgentCallbackContext",
|
||||
"AgentFunctionApp",
|
||||
"AgentResponseCallbackProtocol",
|
||||
"DurableAIAgent",
|
||||
"__version__",
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user