Zbigniew Łukasiak
Zbigniew Łukasiak
I tried to parse: https://www.pzu.pl/_fileserver/item/1540593 ``` import openparse from pprint import pprint doc_path = 'data/OWU_szpit.pdf' parser = openparse.DocumentParser() parsed_doc = parser.parse(doc_path) pprint(parsed_doc.model_dump()) ``` The saved output does not contain for...
In the current PydanticAI example for a bank support agent (https://github.com/pydantic/pydantic-ai/blob/main/pydantic_ai_examples/bank_support.py), the `customer_id` is hardcoded: ```python deps = SupportDependencies(customer_id=123, db=DatabaseConn()) ``` However, in real-world web applications, the customer_id is typically...
I want to use vcr for debugging and I would like to replay a fixed number of interactions and record the rest. If I am not mistaken currently all interactions...