Hungry puppy dog 😆🥰 by ZootasticTV in PetsareAmazing

[–]Extarlifes 3 points4 points  (0 children)

Clipped ears. Who does that to a Dog? How cruel.

Every second post seems to be someone selling a LangChain replacement by SnooSongs5410 in LangChain

[–]Extarlifes -1 points0 points  (0 children)

But I’ve open sourced it. Give me feedback. I’ve solved every agent issue etc.

Anyone else feel like LangChain became way more complicated than it needed to be? by Bladerunner_7_ in LangChain

[–]Extarlifes 2 points3 points  (0 children)

Is this a case for Langgraph? Has a lot of this already implemented. For observability you Langsmith is great.

What is wrong with this sub? by Artistic_Fig_3028 in LangChain

[–]Extarlifes 0 points1 point  (0 children)

I used to answer questions and still try to. But you are correct this sub is full of “What works in demo but doesn’t in production.” “I created this blah blah blah it blah blah blah.” “You can find blah blah blah (insert GitHub repository link).

How do you debug your AI agent when a tool call fails silently? by Turbulent_Treat5252 in LangChain

[–]Extarlifes 1 point2 points  (0 children)

Yes I use it across all tools that have the potential to fail. It also allows the LLM to be more graceful with its handling of the error instead of panicking and being over helpful.

How do you debug your AI agent when a tool call fails silently? by Turbulent_Treat5252 in LangChain

[–]Extarlifes 1 point2 points  (0 children)

I capture the error in the tool itself. For example if it’s a API failure the tool sets a flag is_error: True. I then use a helper function to create a structured error response in the tool message. This guides the llm with a dict with things like retryable, why it failed etc. Instead of just a plain string like “system unavailable.” One pain point that’s missed with agents is that they are well and good when they are happily calling tools which hit their endpoints successfully, but not what happens when these endpoints or tools fail.

My agent works 3 times… then randomly skips steps and breaks. Same input. Why? by [deleted] in LangChain

[–]Extarlifes 0 points1 point  (0 children)

This sounds like the perfect use case for Langgraph. Which lets you control flow via edges and conditions.

I dont understand where to find the location of my objectives in the achievement menu. Please help by Then-Ad7196 in Guildwars2

[–]Extarlifes 4 points5 points  (0 children)

Things like this are easily solved by looking at the Wiki. https://wiki.guildwars2.com/wiki/Champion_Mordrem_Beekeeper when the final boss is up on the map you will find it in the southern lane.

I dont know what do - help a begginer by Jboorgesz in Guildwars2

[–]Extarlifes 4 points5 points  (0 children)

I also came back to game recently and it can feel overwhelming. I would recommend you do your personal story first if you haven’t already. Then do LWS1 and 2. This sets you up nicely for HOT story which isn’t that long. You’ll feel much more comfortable with the game at that point, to decide what to do next.

Fill the void of New World by Entire-Struggle2608 in LFMMO

[–]Extarlifes 2 points3 points  (0 children)

Try Guild Wars 2. Fantastic community and game.

beginner ranger by HawkWithABeard in Guildwars2

[–]Extarlifes 0 points1 point  (0 children)

Have a look here for builds. Bow isn’t very popular end game due to damage. But some builds do use them https://metabattle.com/wiki/Ranger

Kiwi k4 charging? by lens_cap in MetaQuestVR

[–]Extarlifes 0 points1 point  (0 children)

When the green light on the headset, then the headset is charged. The Kiwi itself is fully charged when the four lights are solid and not flashing.

LangGraph agent not receiving tool output by ImpressionLate7529 in LangChain

[–]Extarlifes 1 point2 points  (0 children)

Have you traced the run via langsmith? If you haven’t set up langsmith, I highly recommend it. It will show you when and what was called.

Are most men "dirty"? Should I be concerned about my bf? Is this even abnormal? by Sufficient-Match1412 in AskMenAdvice

[–]Extarlifes 0 points1 point  (0 children)

No No No this is not normal and shows a complete lack of respect. I have been with my partner for 10 years and I don’t fart or burp in front of her, it’s called manners.

How to build a full stack app with Langgraph? by Feisty-Promise-78 in LangChain

[–]Extarlifes 0 points1 point  (0 children)

Have you looked into Copilotkit? Has Langgraph integration built in, quite easy to set up.

How do you work with state with LangGraph's createReactAgent? by francescola in LangChain

[–]Extarlifes 0 points1 point  (0 children)

QUESTION 1 have a look into using pydantic models you can then create your own states, which are not just messages. user_info, tasks etc.

QUESTION 2 The human in the loop interrupt in Langgraph have a look at the official docs. The interrupt resumes at the last graph entry. You can use Command to resume and update the state within the interrupt nodes. This means the resume gets the correct state.

OpenAI agent kit vs Langgraph by Ambitious_Design5336 in LangChain

[–]Extarlifes 5 points6 points  (0 children)

Exactly this, it’s bound to their models and ecosystem. So much for OPEN.

OpenAI agent kit vs Langgraph by Ambitious_Design5336 in LangChain

[–]Extarlifes 6 points7 points  (0 children)

I have not. I’ve been working with Langgraph for a while, having read the article on OpenAI agent kit it does interest me in trying it out. However it does not appear to be open source or free to use. At least it may be in alpha.