Release 1.4 -> master (#524)

Catch up
This commit is contained in:
cybermaggedon 2025-09-20 16:00:37 +01:00 committed by GitHub
parent a8e437fc7f
commit 6c7af8789d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
216 changed files with 31360 additions and 1611 deletions

View file

@ -270,9 +270,9 @@ class TestObjectExtractionServiceIntegration:
assert len(customer_calls) == 1
customer_obj = customer_calls[0]
assert customer_obj.values["customer_id"] == "CUST001"
assert customer_obj.values["name"] == "John Smith"
assert customer_obj.values["email"] == "john.smith@email.com"
assert customer_obj.values[0]["customer_id"] == "CUST001"
assert customer_obj.values[0]["name"] == "John Smith"
assert customer_obj.values[0]["email"] == "john.smith@email.com"
assert customer_obj.confidence > 0.5
@pytest.mark.asyncio
@ -335,10 +335,10 @@ class TestObjectExtractionServiceIntegration:
assert len(product_calls) == 1
product_obj = product_calls[0]
assert product_obj.values["product_id"] == "PROD001"
assert product_obj.values["name"] == "Gaming Laptop"
assert product_obj.values["price"] == "1299.99"
assert product_obj.values["category"] == "electronics"
assert product_obj.values[0]["product_id"] == "PROD001"
assert product_obj.values[0]["name"] == "Gaming Laptop"
assert product_obj.values[0]["price"] == "1299.99"
assert product_obj.values[0]["category"] == "electronics"
@pytest.mark.asyncio
async def test_concurrent_extraction_integration(self, integration_config, mock_integrated_flow):