Skip to content

Commit bfb0ddc

Browse files
committed
Add cassette
1 parent ea4fbda commit bfb0ddc

File tree

5 files changed

+472
-5
lines changed

5 files changed

+472
-5
lines changed

.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
TAVILY_API_KEY=...
22

33
# To separate your traces from other application
4-
LANGSMITH_PROJECT=retrieval-agent
4+
LANGSMITH_PROJECT=react-agent
55

66
# The following depend on your selected configuration
77

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ To use Anthropic's chat models:
6060
```
6161
ANTHROPIC_API_KEY=your-api-key
6262
```
63+
6364
### Fireworks Chat Models
6465
6566
To use Fireworks AI's chat models:
@@ -70,25 +71,24 @@ To use Fireworks AI's chat models:
7071
```
7172
FIREWORKS_API_KEY=your-api-key
7273
```
74+
7375
#### OpenAI Chat Models
7476
7577
To use OpenAI's chat models:
7678
7779
1. Sign up for an [OpenAI API key](https://platform.openai.com/signup).
7880
2. Once you have your API key, add it to your `.env` file:
81+
7982
```
8083
OPENAI_API_KEY=your-api-key
8184
```
8285
8386
</details>
8487
85-
86-
8788
<!--
8889
End setup instructions
8990
-->
9091
91-
9292
3. Customize whatever you'd like in the code.
9393
4. Open the folder LangGraph Studio!
9494
@@ -113,6 +113,8 @@ You can find the latest (under construction) docs on [LangGraph](https://github.
113113
114114
LangGraph Studio also integrates with [LangSmith](https://smith.langchain.com/) for more in-depth tracing and collaboration with teammates.
115115
116+
[^1]: https://python.langchain.com/docs/concepts/#tools
117+
116118
<!--
117119
Configuration auto-generated by `langgraph template lock`. DO NOT EDIT MANUALLY.
118120
{
@@ -504,4 +506,4 @@ Configuration auto-generated by `langgraph template lock`. DO NOT EDIT MANUALLY.
504506
}
505507
}
506508
}
507-
-->
509+
-->

src/react_agent/graph.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,3 +125,4 @@ def route_model_output(state: State) -> Literal["__end__", "tools"]:
125125
interrupt_before=[], # Add node names here to update state before they're called
126126
interrupt_after=[], # Add node names here to update state after they're called
127127
)
128+
graph.name = "ReAct Agent" # This customizes the name in LangSmith

static/studio_ui.png

-334 KB
Loading

0 commit comments

Comments
 (0)