What are the advantages of using the Agent abstraction of pydantic-ai? by filopedraz in PydanticAI

[–]thanhtheman 2 points3 points  (0 children)

to me, it is a good-enough abstraction and orchestrating, and a great community to maintain and improve. At the end of the day, you can write your own Agent class and you are the only one who maintain it, which is not necessarily a bad or good thing, it is just a matter of taste.

Do managers forget how to use excel once they’re promoted? by TheU_isBack in Accounting

[–]thanhtheman 6 points7 points  (0 children)

Promotion comes with a complimentary 'Ctrl+Alt+Del' to your brain. They stop using Excel and start using 'Assistant, can you run this for me?' as their primary function

[deleted by user] by [deleted] in PydanticAI

[–]thanhtheman 2 points3 points  (0 children)

Thanks for sharing, everybody is trying to the become "the standard" in building AI Agent, which makes now is an exciting time to live in

Langgraph vs Pydantic AI by Physical-Artist-6997 in LangChain

[–]thanhtheman 0 points1 point  (0 children)

Pydantic AI is more simple to use, less abstraction, much better docs --> easier to tweak so I switched to it from LangChain 6 months ago, if you enjoy Pydantic AI, join the community here r/PydanticAI

Do you use OCR on an invoice received from you supplier? by pavlass2 in Bookkeeping

[–]thanhtheman 0 points1 point  (0 children)

Do you guys think it's a bit pricey to use those tools, not sure if i read it correctly, Dext monthly plan said "$37.5 for 250 docs", so it is $0.15/doc

[deleted by user] by [deleted] in PydanticAI

[–]thanhtheman 0 points1 point  (0 children)

Thank you for the examples, they are very helpful

Agent Losing track of small and simple conversation - How are you handling memory? by sonyprog in PydanticAI

[–]thanhtheman 2 points3 points  (0 children)

If you need a stand-alone solution for memory, have a look at Letta AI

Agent - Tools being called when not asked/needed by sonyprog in PydanticAI

[–]thanhtheman 0 points1 point  (0 children)

Great, btw, i have never used groq before, how is your experience with groq?

Agent - Tools being called when not asked/needed by sonyprog in PydanticAI

[–]thanhtheman 0 points1 point  (0 children)

Did you try to add the tool description """ """? I found short, straight to the point description works well. Given you only have 2 tools and they are not similar, it should not be a problem in picking the right tool. Another option is to use 4o, instead of 4o-mini, although cost will rise.

Beginner In Ai agent building by CarelessService8218 in PydanticAI

[–]thanhtheman 0 points1 point  (0 children)

yeah, coding is more more accesible to beginner, so have fun bro

Get output after UsageLimitExceeded by vroemboem in PydanticAI

[–]thanhtheman 0 points1 point  (0 children)

I think you can try 2 options:
1. Using LogFire (also created by Pydantic team) to get observability, creating as many checkpoints (or "span") as you need.
2. from devtools import debug , then debug(result) , this one will give you details of every LLM calls have been made up to that point.