mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
95fd5ec658
* renamed AzureAIINferenceEmbeddings and lazy load azure-cosmos and env var rename * updated coverage * fix readme
31 lines
788 B
Markdown
31 lines
788 B
Markdown
# Azure Cosmos DB Package (agent-framework-azure-cosmos)
|
|
|
|
Azure Cosmos DB history provider integration for Agent Framework.
|
|
|
|
## Main Classes
|
|
|
|
- **`CosmosHistoryProvider`** - Persistent conversation history storage backed by Azure Cosmos DB
|
|
|
|
## Usage
|
|
|
|
```python
|
|
from agent_framework.azure import CosmosHistoryProvider
|
|
|
|
provider = CosmosHistoryProvider(
|
|
endpoint="https://<account>.documents.azure.com:443/",
|
|
credential="<key-or-token-credential>",
|
|
database_name="agent-framework",
|
|
container_name="chat-history",
|
|
)
|
|
```
|
|
|
|
Container name is configured on the provider. `session_id` is used as the partition key.
|
|
|
|
## Import Path
|
|
|
|
```python
|
|
from agent_framework.azure import CosmosHistoryProvider
|
|
# or directly:
|
|
from agent_framework_azure_cosmos import CosmosHistoryProvider
|
|
```
|