mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
838a7fd61d
* Replace Role and FinishReason classes with NewType + Literal
- Remove EnumLike metaclass from _types.py
- Replace Role class with NewType('Role', str) + RoleLiteral
- Replace FinishReason class with NewType('FinishReason', str) + FinishReasonLiteral
- Update all usages across codebase to use string literals
- Remove .value access patterns (direct string comparison now works)
- Add backward compatibility for legacy dict serialization format
- Update tests to reflect new string-based types
Addresses #3591, #3615
* Simplify ChatResponse and AgentResponse type hints (#3592)
- Remove overloads from ChatResponse.__init__
- Remove text parameter from ChatResponse.__init__
- Remove | dict[str, Any] from finish_reason and usage_details params
- Remove **kwargs from AgentResponse.__init__
- Both now accept ChatMessage | Sequence[ChatMessage] | None for messages
- Update docstrings and examples to reflect changes
- Fix tests that were using removed kwargs
- Fix Role type hint usage in ag-ui utils
* Remove text parameter from ChatResponseUpdate and AgentResponseUpdate (#3597)
- Remove text parameter from ChatResponseUpdate.__init__
- Remove text parameter from AgentResponseUpdate.__init__
- Remove **kwargs from both update classes
- Simplify contents parameter type to Sequence[Content] | None
- Update all usages to use contents=[Content.from_text(...)] pattern
- Fix imports in test files
- Update docstrings and examples
* Rename from_chat_response_updates to from_updates (#3593)
- ChatResponse.from_chat_response_updates → ChatResponse.from_updates
- ChatResponse.from_chat_response_generator → ChatResponse.from_update_generator
- AgentResponse.from_agent_run_response_updates → AgentResponse.from_updates
* Remove try_parse_value method from ChatResponse and AgentResponse (#3595)
- Remove try_parse_value method from ChatResponse
- Remove try_parse_value method from AgentResponse
- Remove try_parse_value calls from from_updates and from_update_generator methods
- Update samples to use try/except with response.value instead
- Update tests to use response.value pattern
- Users should now use response.value with try/except for safe parsing
* Add agent_id to AgentResponse and clarify author_name documentation (#3596)
- Add agent_id parameter to AgentResponse class
- Document that author_name is on ChatMessage objects, not responses
- Update ChatResponse docstring with author_name note
- Update AgentResponse docstring with author_name note
* Simplify ChatMessage.__init__ signature (#3618)
- Make contents a positional argument accepting Sequence[Content | str]
- Auto-convert strings in contents to TextContent
- Remove overloads, keep text kwarg for backward compatibility with serialization
- Update _parse_content_list to handle string items
- Update all usages across codebase to use new format: ChatMessage("role", ["text"])
* Allow Content as input on run and get_response
- Update prepare_messages and normalize_messages to accept Content
- Update type signatures in _agents.py and _clients.py
- Add tests for Content input handling
* Fix ChatMessage usage across packages and samples
Update all remaining ChatMessage(role=..., text=...) to use new
ChatMessage('role', ['text']) signature.
* Fix Role string usage and response format parsing
- Fix redis provider: remove .value access on string literals
- Fix durabletask ensure_response_format: set _response_format before accessing .value
* Fix ollama .value and ai_model_id issues, handle None in content list
- Fix ollama _chat_client: remove .value on string literals
- Fix ollama _chat_client: rename ai_model_id to model_id
- Fix _parse_content_list: skip None values gracefully
* Fix A2AAgent type signature to include Content
* Fix Role/FinishReason NewType dict annotations and improve test coverage to 95%
* Fix mypy errors for Role/FinishReason NewType usage
* Fix Role.TOOL and Role.ASSISTANT usage in _orchestrator_helpers.py
* Fix Role NewType usage in durabletask _models.py
336 lines
11 KiB
Python
336 lines
11 KiB
Python
# Copyright (c) Microsoft. All rights reserved.
|
|
|
|
"""Tests for conversation store implementation."""
|
|
|
|
from typing import cast
|
|
|
|
import pytest
|
|
from openai.types.conversations import InputFileContent, InputImageContent, InputTextContent
|
|
|
|
from agent_framework_devui._conversations import InMemoryConversationStore
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_create_conversation():
|
|
"""Test creating a conversation."""
|
|
store = InMemoryConversationStore()
|
|
|
|
conversation = store.create_conversation(metadata={"agent_id": "test_agent"})
|
|
|
|
assert conversation.id.startswith("conv_")
|
|
assert conversation.object == "conversation"
|
|
assert conversation.metadata == {"agent_id": "test_agent"}
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_get_conversation():
|
|
"""Test retrieving a conversation."""
|
|
store = InMemoryConversationStore()
|
|
|
|
# Create conversation
|
|
created = store.create_conversation(metadata={"agent_id": "test_agent"})
|
|
|
|
# Retrieve it
|
|
retrieved = store.get_conversation(created.id)
|
|
|
|
assert retrieved is not None
|
|
assert retrieved.id == created.id
|
|
assert retrieved.metadata == {"agent_id": "test_agent"}
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_get_conversation_not_found():
|
|
"""Test retrieving non-existent conversation."""
|
|
store = InMemoryConversationStore()
|
|
|
|
conversation = store.get_conversation("conv_nonexistent")
|
|
|
|
assert conversation is None
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_update_conversation():
|
|
"""Test updating conversation metadata."""
|
|
store = InMemoryConversationStore()
|
|
|
|
# Create conversation
|
|
created = store.create_conversation(metadata={"agent_id": "test_agent"})
|
|
|
|
# Update metadata
|
|
updated = store.update_conversation(created.id, metadata={"agent_id": "new_agent", "session_id": "sess_123"})
|
|
|
|
assert updated.id == created.id
|
|
assert updated.metadata == {"agent_id": "new_agent", "session_id": "sess_123"}
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_delete_conversation():
|
|
"""Test deleting a conversation."""
|
|
store = InMemoryConversationStore()
|
|
|
|
# Create conversation
|
|
created = store.create_conversation(metadata={"agent_id": "test_agent"})
|
|
|
|
# Delete it
|
|
result = store.delete_conversation(created.id)
|
|
|
|
assert result.id == created.id
|
|
assert result.deleted is True
|
|
assert result.object == "conversation.deleted"
|
|
|
|
# Verify it's gone
|
|
assert store.get_conversation(created.id) is None
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_get_thread():
|
|
"""Test getting underlying AgentThread."""
|
|
store = InMemoryConversationStore()
|
|
|
|
# Create conversation
|
|
conversation = store.create_conversation(metadata={"agent_id": "test_agent"})
|
|
|
|
# Get thread
|
|
thread = store.get_thread(conversation.id)
|
|
|
|
assert thread is not None
|
|
# AgentThread should have message_store
|
|
assert hasattr(thread, "message_store")
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_get_thread_not_found():
|
|
"""Test getting thread for non-existent conversation."""
|
|
store = InMemoryConversationStore()
|
|
|
|
thread = store.get_thread("conv_nonexistent")
|
|
|
|
assert thread is None
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_list_conversations_by_metadata():
|
|
"""Test filtering conversations by metadata."""
|
|
store = InMemoryConversationStore()
|
|
|
|
# Create multiple conversations
|
|
_conv1 = store.create_conversation(metadata={"agent_id": "agent1"})
|
|
_conv2 = store.create_conversation(metadata={"agent_id": "agent2"})
|
|
conv3 = store.create_conversation(metadata={"agent_id": "agent1", "session_id": "sess_1"})
|
|
|
|
# Filter by agent_id
|
|
results = await store.list_conversations_by_metadata({"agent_id": "agent1"})
|
|
|
|
assert len(results) == 2
|
|
assert all(cast(dict[str, str], c.metadata).get("agent_id") == "agent1" for c in results if c.metadata)
|
|
|
|
# Filter by agent_id and session_id
|
|
results = await store.list_conversations_by_metadata({"agent_id": "agent1", "session_id": "sess_1"})
|
|
|
|
assert len(results) == 1
|
|
assert results[0].id == conv3.id
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_add_items():
|
|
"""Test adding items to conversation."""
|
|
store = InMemoryConversationStore()
|
|
|
|
# Create conversation
|
|
conversation = store.create_conversation(metadata={"agent_id": "test_agent"})
|
|
|
|
# Add items
|
|
items = [{"role": "user", "content": [{"type": "text", "text": "Hello"}]}]
|
|
|
|
conv_items = await store.add_items(conversation.id, items=items)
|
|
|
|
assert len(conv_items) == 1
|
|
# Message is a ConversationItem type - check standard OpenAI fields
|
|
assert conv_items[0].type == "message"
|
|
assert conv_items[0].role == "user"
|
|
assert conv_items[0].status == "completed"
|
|
assert len(conv_items[0].content) == 1
|
|
assert conv_items[0].content[0].type == "text"
|
|
text_content = cast(InputTextContent, conv_items[0].content[0])
|
|
assert text_content.text == "Hello"
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_list_items():
|
|
"""Test listing conversation items."""
|
|
store = InMemoryConversationStore()
|
|
|
|
# Create conversation
|
|
conversation = store.create_conversation(metadata={"agent_id": "test_agent"})
|
|
|
|
# Add items
|
|
items = [
|
|
{"role": "user", "content": [{"type": "text", "text": "Hello"}]},
|
|
{"role": "assistant", "content": [{"type": "text", "text": "Hi there"}]},
|
|
]
|
|
await store.add_items(conversation.id, items=items)
|
|
|
|
# List items
|
|
retrieved_items, has_more = await store.list_items(conversation.id)
|
|
|
|
assert len(retrieved_items) >= 2 # At least the items we added
|
|
assert has_more is False
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_list_items_pagination():
|
|
"""Test pagination when listing items."""
|
|
store = InMemoryConversationStore()
|
|
|
|
# Create conversation
|
|
conversation = store.create_conversation(metadata={"agent_id": "test_agent"})
|
|
|
|
# Add multiple items
|
|
items = [{"role": "user", "content": [{"type": "text", "text": f"Message {i}"}]} for i in range(5)]
|
|
await store.add_items(conversation.id, items=items)
|
|
|
|
# List with limit
|
|
retrieved_items, has_more = await store.list_items(conversation.id, limit=3)
|
|
|
|
assert len(retrieved_items) == 3
|
|
assert has_more is True
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_list_items_converts_function_calls():
|
|
"""Test that list_items properly converts function calls to ResponseFunctionToolCallItem."""
|
|
from agent_framework import ChatMessage, ChatMessageStore
|
|
|
|
store = InMemoryConversationStore()
|
|
|
|
# Create conversation
|
|
conversation = store.create_conversation(metadata={"agent_id": "test_agent"})
|
|
|
|
# Get the underlying thread and set up message store
|
|
thread = store.get_thread(conversation.id)
|
|
assert thread is not None
|
|
|
|
# Initialize message store if not present
|
|
if thread.message_store is None:
|
|
thread.message_store = ChatMessageStore()
|
|
|
|
# Simulate messages from agent execution with function calls
|
|
messages = [
|
|
ChatMessage("user", [{"type": "text", "text": "What's the weather in SF?"}]),
|
|
ChatMessage(
|
|
role="assistant",
|
|
contents=[
|
|
{
|
|
"type": "function_call",
|
|
"name": "get_weather",
|
|
"arguments": '{"city": "San Francisco"}',
|
|
"call_id": "call_test123",
|
|
}
|
|
],
|
|
),
|
|
ChatMessage(
|
|
role="tool",
|
|
contents=[
|
|
{
|
|
"type": "function_result",
|
|
"call_id": "call_test123",
|
|
"result": '{"temperature": 65, "condition": "sunny"}',
|
|
}
|
|
],
|
|
),
|
|
ChatMessage("assistant", [{"type": "text", "text": "The weather is sunny, 65°F"}]),
|
|
]
|
|
|
|
# Add messages to thread
|
|
await thread.on_new_messages(messages)
|
|
|
|
# List conversation items
|
|
items, has_more = await store.list_items(conversation.id)
|
|
|
|
# Verify we got the right number and types of items
|
|
assert len(items) == 4, f"Expected 4 items, got {len(items)}"
|
|
assert has_more is False
|
|
|
|
# Check item types
|
|
assert items[0].type == "message", "First item should be a message"
|
|
assert items[0].role == "user"
|
|
assert len(items[0].content) == 1
|
|
text_content_0 = cast(InputTextContent, items[0].content[0])
|
|
assert text_content_0.text == "What's the weather in SF?"
|
|
|
|
assert items[1].type == "function_call", "Second item should be a function_call"
|
|
assert items[1].call_id == "call_test123"
|
|
assert items[1].name == "get_weather"
|
|
assert items[1].arguments == '{"city": "San Francisco"}'
|
|
assert items[1].status == "completed"
|
|
|
|
assert items[2].type == "function_call_output", "Third item should be a function_call_output"
|
|
assert items[2].call_id == "call_test123"
|
|
assert items[2].output == '{"temperature": 65, "condition": "sunny"}'
|
|
assert items[2].status == "completed"
|
|
|
|
assert items[3].type == "message", "Fourth item should be a message"
|
|
assert items[3].role == "assistant"
|
|
assert len(items[3].content) == 1
|
|
text_content_3 = cast(InputTextContent, items[3].content[0])
|
|
assert text_content_3.text == "The weather is sunny, 65°F"
|
|
|
|
# CRITICAL: Ensure no empty message items
|
|
for item in items:
|
|
if item.type == "message":
|
|
assert len(item.content) > 0, f"Message item {item.id} has empty content!"
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_list_items_handles_images_and_files():
|
|
"""Test that list_items properly converts data content (images/files) to OpenAI types."""
|
|
from agent_framework import ChatMessage, ChatMessageStore
|
|
|
|
store = InMemoryConversationStore()
|
|
|
|
# Create conversation
|
|
conversation = store.create_conversation(metadata={"agent_id": "test_agent"})
|
|
|
|
# Get the underlying thread
|
|
thread = store.get_thread(conversation.id)
|
|
assert thread is not None
|
|
|
|
if thread.message_store is None:
|
|
thread.message_store = ChatMessageStore()
|
|
|
|
# Simulate message with image and file
|
|
messages = [
|
|
ChatMessage(
|
|
role="user",
|
|
contents=[
|
|
{"type": "text", "text": "Check this image and PDF"},
|
|
{"type": "data", "uri": "data:image/png;base64,iVBORw0KGgo=", "media_type": "image/png"},
|
|
{"type": "data", "uri": "data:application/pdf;base64,JVBERi0=", "media_type": "application/pdf"},
|
|
],
|
|
),
|
|
]
|
|
|
|
await thread.on_new_messages(messages)
|
|
|
|
# List items
|
|
items, has_more = await store.list_items(conversation.id)
|
|
|
|
assert len(items) == 1
|
|
assert items[0].type == "message"
|
|
assert items[0].role == "user"
|
|
assert len(items[0].content) == 3
|
|
|
|
# Check content types
|
|
assert items[0].content[0].type == "text"
|
|
text_content = cast(InputTextContent, items[0].content[0])
|
|
assert text_content.text == "Check this image and PDF"
|
|
|
|
assert items[0].content[1].type == "input_image"
|
|
image_content = cast(InputImageContent, items[0].content[1])
|
|
assert image_content.image_url == "data:image/png;base64,iVBORw0KGgo="
|
|
assert image_content.detail == "auto"
|
|
|
|
assert items[0].content[2].type == "input_file"
|
|
file_content = cast(InputFileContent, items[0].content[2])
|
|
assert file_content.file_url == "data:application/pdf;base64,JVBERi0="
|