mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
6f6ee61834
* Python: Fix broken samples and add missing READMEs - simple_context_provider: move instructions kwarg into options dict - suspend_resume_session: use OpenAIChatCompletionClient for in-memory demo - foundry_chat_client_with_hosted_mcp: move store kwarg into options dict - Add README.md for context_providers and conversations sample folders Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Python: Fix additional sample issues in context_providers - mem0_basic: send preferences query before sleep so Mem0 can learn them, print result from new session recall - mem0_sessions: add session for multi-turn conversation in agent-scoped example, remove user_id from agent-scoped provider (Mem0 API stores memories without user_id when agent_id is provided), use single message for storing preferences - redis_basics: print retrieved context messages instead of raw object - redis_sessions: add missing load_dotenv() call - redis_basics/redis_sessions: fix docstrings referencing wrong client type - azure_redis_conversation: replace duplicate copyright with load_dotenv() Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Python: Fix broken link in declarative README openai_responses_agent.py was renamed to openai_agent.py Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --------- Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
280 lines
10 KiB
Python
280 lines
10 KiB
Python
# Copyright (c) Microsoft. All rights reserved.
|
|
|
|
"""Redis Context Provider: Basic usage and agent integration
|
|
|
|
This example demonstrates how to use the Redis context provider to persist and
|
|
retrieve conversational memory for agents. It covers three progressively more
|
|
realistic scenarios:
|
|
|
|
1) Standalone provider usage ("basic cache")
|
|
- Write messages to Redis and retrieve relevant context using full-text or
|
|
hybrid vector search.
|
|
|
|
2) Agent + provider
|
|
- Connect the provider to an agent so the agent can store user preferences
|
|
and recall them across turns.
|
|
|
|
3) Agent + provider + tool memory
|
|
- Expose a simple tool to the agent, then verify that details from the tool
|
|
outputs are captured and retrievable as part of the agent's memory.
|
|
|
|
Requirements:
|
|
- A Redis instance with RediSearch enabled (e.g., Redis Stack)
|
|
- agent-framework with the Redis extra installed: pip install "agent-framework-redis"
|
|
- Optionally an OpenAI API key if enabling embeddings for hybrid search
|
|
|
|
Run:
|
|
python redis_basics.py
|
|
"""
|
|
|
|
import asyncio
|
|
import os
|
|
|
|
from agent_framework import Agent, Message, tool
|
|
from agent_framework.foundry import FoundryChatClient
|
|
from agent_framework.redis import RedisContextProvider
|
|
from azure.identity import AzureCliCredential
|
|
from dotenv import load_dotenv
|
|
from redisvl.extensions.cache.embeddings import EmbeddingsCache
|
|
from redisvl.utils.vectorize import OpenAITextVectorizer
|
|
|
|
# Load environment variables from .env file
|
|
load_dotenv()
|
|
|
|
# Default Redis URL for local Redis Stack.
|
|
# Override via the REDIS_URL environment variable for remote or authenticated instances.
|
|
REDIS_URL = os.getenv("REDIS_URL", "redis://localhost:6379")
|
|
|
|
|
|
# NOTE: approval_mode="never_require" is for sample brevity.
|
|
# Use "always_require" in production; see samples/02-agents/tools/function_tool_with_approval.py
|
|
# and samples/02-agents/tools/function_tool_with_approval_and_sessions.py.
|
|
@tool(approval_mode="never_require")
|
|
def search_flights(origin_airport_code: str, destination_airport_code: str, detailed: bool = False) -> str:
|
|
"""Simulated flight-search tool to demonstrate tool memory.
|
|
|
|
The agent can call this function, and the returned details can be stored
|
|
by the Redis context provider. We later ask the agent to recall facts from
|
|
these tool results to verify memory is working as expected.
|
|
"""
|
|
# Minimal static catalog used to simulate a tool's structured output
|
|
flights = {
|
|
("JFK", "LAX"): {
|
|
"airline": "SkyJet",
|
|
"duration": "6h 15m",
|
|
"price": 325,
|
|
"cabin": "Economy",
|
|
"baggage": "1 checked bag",
|
|
},
|
|
("SFO", "SEA"): {
|
|
"airline": "Pacific Air",
|
|
"duration": "2h 5m",
|
|
"price": 129,
|
|
"cabin": "Economy",
|
|
"baggage": "Carry-on only",
|
|
},
|
|
("LHR", "DXB"): {
|
|
"airline": "EuroWings",
|
|
"duration": "6h 50m",
|
|
"price": 499,
|
|
"cabin": "Business",
|
|
"baggage": "2 bags included",
|
|
},
|
|
}
|
|
|
|
route = (origin_airport_code.upper(), destination_airport_code.upper())
|
|
if route not in flights:
|
|
return f"No flights found between {origin_airport_code} and {destination_airport_code}"
|
|
|
|
flight = flights[route]
|
|
if not detailed:
|
|
return f"Flights available from {origin_airport_code} to {destination_airport_code}."
|
|
|
|
return (
|
|
f"{flight['airline']} operates flights from {origin_airport_code} to {destination_airport_code}. "
|
|
f"Duration: {flight['duration']}. "
|
|
f"Price: ${flight['price']}. "
|
|
f"Cabin: {flight['cabin']}. "
|
|
f"Baggage policy: {flight['baggage']}."
|
|
)
|
|
|
|
|
|
def create_chat_client() -> FoundryChatClient:
|
|
"""Create a FoundryChatClient using a Foundry project endpoint."""
|
|
return FoundryChatClient(
|
|
project_endpoint=os.environ["FOUNDRY_PROJECT_ENDPOINT"],
|
|
model=os.environ["FOUNDRY_MODEL"],
|
|
credential=AzureCliCredential(),
|
|
)
|
|
|
|
|
|
async def main() -> None:
|
|
"""Walk through provider-only, agent integration, and tool-memory scenarios.
|
|
|
|
Helpful debugging (uncomment when iterating):
|
|
- print(await provider.redis_index.info())
|
|
- print(await provider.search_all())
|
|
"""
|
|
|
|
print("1. Standalone provider usage:")
|
|
print("-" * 40)
|
|
# Create a provider with partition scope and OpenAI embeddings
|
|
|
|
# Please set OPENAI_API_KEY to use the OpenAI vectorizer.
|
|
# For chat responses, also set FOUNDRY_PROJECT_ENDPOINT and FOUNDRY_MODEL.
|
|
|
|
# We attach an embedding vectorizer so the provider can perform hybrid (text + vector)
|
|
# retrieval. If you prefer text-only retrieval, instantiate RedisContextProvider without the
|
|
# 'vectorizer' and vector_* parameters.
|
|
vectorizer = OpenAITextVectorizer(
|
|
model="text-embedding-ada-002",
|
|
api_config={"api_key": os.getenv("OPENAI_API_KEY")},
|
|
cache=EmbeddingsCache(name="openai_embeddings_cache", redis_url=REDIS_URL),
|
|
)
|
|
# The provider manages persistence and retrieval. application_id/agent_id/user_id
|
|
# scope data for multi-tenant separation; thread_id (set later) narrows to a
|
|
# specific conversation.
|
|
provider = RedisContextProvider(
|
|
source_id="redis_context",
|
|
redis_url=REDIS_URL,
|
|
index_name="redis_basics",
|
|
application_id="matrix_of_kermits",
|
|
agent_id="agent_kermit",
|
|
user_id="kermit",
|
|
redis_vectorizer=vectorizer,
|
|
vector_field_name="vector",
|
|
vector_algorithm="hnsw",
|
|
vector_distance_metric="cosine",
|
|
)
|
|
|
|
# Build sample chat messages to persist to Redis
|
|
messages = [
|
|
Message("user", ["runA CONVO: User Message"]),
|
|
Message("assistant", ["runA CONVO: Assistant Message"]),
|
|
Message("system", ["runA CONVO: System Message"]),
|
|
]
|
|
|
|
# Use the provider's before_run/after_run API to store and retrieve messages.
|
|
# In practice, the agent handles this automatically; this shows the low-level API.
|
|
from agent_framework import AgentSession, SessionContext
|
|
|
|
session = AgentSession(session_id="runA")
|
|
context = SessionContext(input_messages=messages)
|
|
state = session.state
|
|
|
|
# Store messages via after_run
|
|
await provider.after_run(agent=None, session=session, context=context, state=state)
|
|
|
|
# Retrieve relevant memories via before_run
|
|
query_context = SessionContext(input_messages=[Message("system", ["B: Assistant Message"])])
|
|
await provider.before_run(agent=None, session=session, context=query_context, state=state)
|
|
|
|
# Inspect retrieved memories that would be injected into instructions
|
|
# (Debug-only output so you can verify retrieval works as expected.)
|
|
print("Before Run Result:")
|
|
print(query_context)
|
|
|
|
# Drop / delete the provider index in Redis
|
|
await provider.redis_index.delete()
|
|
|
|
# --- Agent + provider: teach and recall a preference ---
|
|
|
|
print("\n2. Agent + provider: teach and recall a preference")
|
|
print("-" * 40)
|
|
# Fresh provider for the agent demo (recreates index)
|
|
vectorizer = OpenAITextVectorizer(
|
|
model="text-embedding-ada-002",
|
|
api_config={"api_key": os.getenv("OPENAI_API_KEY")},
|
|
cache=EmbeddingsCache(name="openai_embeddings_cache", redis_url=REDIS_URL),
|
|
)
|
|
# Recreate a clean index so the next scenario starts fresh
|
|
provider = RedisContextProvider(
|
|
source_id="redis_context",
|
|
redis_url=REDIS_URL,
|
|
index_name="redis_basics_2",
|
|
prefix="context_2",
|
|
application_id="matrix_of_kermits",
|
|
agent_id="agent_kermit",
|
|
user_id="kermit",
|
|
redis_vectorizer=vectorizer,
|
|
vector_field_name="vector",
|
|
vector_algorithm="hnsw",
|
|
vector_distance_metric="cosine",
|
|
)
|
|
|
|
# Create chat client for the agent
|
|
client = create_chat_client()
|
|
# Create agent wired to the Redis context provider. The provider automatically
|
|
# persists conversational details and surfaces relevant context on each turn.
|
|
agent = Agent(
|
|
client=client,
|
|
name="MemoryEnhancedAssistant",
|
|
instructions=(
|
|
"You are a helpful assistant. Personalize replies using provided context. "
|
|
"Before answering, always check for stored context"
|
|
),
|
|
tools=[],
|
|
context_providers=[provider],
|
|
)
|
|
|
|
# Teach a user preference; the agent writes this to the provider's memory
|
|
query = "Remember that I enjoy glugenflorgle"
|
|
result = await agent.run(query)
|
|
print("User: ", query)
|
|
print("Agent: ", result)
|
|
|
|
# Ask the agent to recall the stored preference; it should retrieve from memory
|
|
query = "What do I enjoy?"
|
|
result = await agent.run(query)
|
|
print("User: ", query)
|
|
print("Agent: ", result)
|
|
|
|
# Drop / delete the provider index in Redis
|
|
await provider.redis_index.delete()
|
|
|
|
# --- Agent + provider + tool: store and recall tool-derived context ---
|
|
|
|
print("\n3. Agent + provider + tool: store and recall tool-derived context")
|
|
print("-" * 40)
|
|
# Text-only provider (full-text search only). Omits vectorizer and related params.
|
|
provider = RedisContextProvider(
|
|
source_id="redis_context",
|
|
redis_url=REDIS_URL,
|
|
index_name="redis_basics_3",
|
|
prefix="context_3",
|
|
application_id="matrix_of_kermits",
|
|
agent_id="agent_kermit",
|
|
user_id="kermit",
|
|
)
|
|
|
|
# Create agent exposing the flight search tool. Tool outputs are captured by the
|
|
# provider and become retrievable context for later turns.
|
|
client = create_chat_client()
|
|
agent = Agent(
|
|
client=client,
|
|
name="MemoryEnhancedAssistant",
|
|
instructions=(
|
|
"You are a helpful assistant. Personalize replies using provided context. "
|
|
"Before answering, always check for stored context"
|
|
),
|
|
tools=search_flights,
|
|
context_providers=[provider],
|
|
)
|
|
# Invoke the tool; outputs become part of memory/context
|
|
query = "Are there any flights from new york city (jfk) to la? Give me details"
|
|
result = await agent.run(query)
|
|
print("User: ", query)
|
|
print("Agent: ", result)
|
|
# Verify the agent can recall tool-derived context
|
|
query = "Which flight did I ask about?"
|
|
result = await agent.run(query)
|
|
print("User: ", query)
|
|
print("Agent: ", result)
|
|
|
|
# Drop / delete the provider index in Redis
|
|
await provider.redis_index.delete()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
asyncio.run(main())
|