react-agent icon indicating copy to clipboard operation
react-agent copied to clipboard

LangGraph template for a simple ReAct agent

Results 14 react-agent issues
Sort by recently updated
recently updated
newest added

Your example states that the agent follows the workflow LLM → call_func → LLM. However, I’d like to understand the stopping conditions—specifically, how and when the agent terminates based on...

I am using `google_vertexai` with `gemini-2.0-flash`. How to use it to search the internet instead of using another third-party Tavily API?

When starting the project, running `make test` will fail because the pytest package is missing. To add this package into the project, we run `uv add --dev pytest` which will...

https://github.com/langchain-ai/react-agent/blob/6302bd7c41a7254964d1f81e7aa619959ac2e409/tests/integration_tests/test_graph.py#L8 Wondering if anyone else see their Github actions hanging at this integration tests? Mine does, but the test defined in this file passed and then just hung indefinitely. Removing...

Is there a way to use Google Vertex AI models? I don't see anything Google related in the Clone a template page, where you select a Configuration Model.

In the project, only the graph is defined through builder.compile() without executing graph.invoke(); How can I get the thread_id information?

Hi team, we found that if pip install langgraph-api latest will lead to protobuf version mismatch but langgraph-api 0.4.28 is good. The protobuf tool lock version in fireworks-ai.

Fixes #26 However this might be a quickfix, as I can't tell what is the underlying cause of the version mismatch. It may be due to some subdependency of this...

Hi, Colleagues of mine are hitting an error when creating a new ReAct agent with Python 3.12.3: Reproduction: ``` # With Python 3.12.3 pip install --upgrade "langgraph-cli[inmem]" langgraph new ./react-agent...