You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+9-87
Original file line number
Diff line number
Diff line change
@@ -40,17 +40,17 @@ The primary [search tool](./src/react_agent/tools.py) [^1] used is [Tavily](http
40
40
Setup instruction auto-generated by `langgraph template lock`. DO NOT EDIT MANUALLY.
41
41
-->
42
42
43
-
<details>
44
-
<summary>Setup for `model_name`</summary>
45
-
The `llm` configuration defaults are shown below:
43
+
### Setup Model
44
+
45
+
The defaults values for `model` are shown below:
46
46
47
47
```yaml
48
-
model_name: anthropic/claude-3-5-sonnet-20240620
48
+
model: anthropic/claude-3-5-sonnet-20240620
49
49
```
50
50
51
51
Follow the instructions below to get set up, or pick one of the additional options.
52
52
53
-
### Anthropic Chat Models
53
+
#### Anthropic
54
54
55
55
To use Anthropic's chat models:
56
56
@@ -60,17 +60,7 @@ To use Anthropic's chat models:
60
60
```
61
61
ANTHROPIC_API_KEY=your-api-key
62
62
```
63
-
### Fireworks Chat Models
64
-
65
-
To use Fireworks AI's chat models:
66
-
67
-
1. # for a [Fireworks AI account](https://app.fireworks.ai/#) and obtain an API key.
68
-
2. Add your Fireworks AI API key to your `.env` file:
69
-
70
-
```
71
-
FIREWORKS_API_KEY=your-api-key
72
-
```
73
-
#### OpenAI Chat Models
63
+
#### OpenAI
74
64
75
65
To use OpenAI's chat models:
76
66
@@ -80,7 +70,7 @@ To use OpenAI's chat models:
80
70
OPENAI_API_KEY=your-api-key
81
71
```
82
72
83
-
</details>
73
+
84
74
85
75
86
76
@@ -96,7 +86,7 @@ End setup instructions
96
86
97
87
1. **Add new tools**: Extend the agent's capabilities by adding new tools in [tools.py](./src/react_agent/tools.py). These can be any Python functions that perform specific tasks.
98
88
2. **Select a different model**: We default to Anthropic's Claude 3 Sonnet. You can select a compatible chat model using `provider/model-name` via configuration. Example: `openai/gpt-4-turbo-preview`.
99
-
3. **Customize the prompt**: We provide a default system prompt in [configuration.py](./src/react_agent/configuration.py). You can easily update this via configuration in the studio.
89
+
3. **Customize the prompt**: We provide a default system prompt in [prompts.py](./src/react_agent/prompts.py). You can easily update this via configuration in the studio.
100
90
101
91
You can also quickly extend this template by:
102
92
@@ -122,7 +112,7 @@ Configuration auto-generated by `langgraph template lock`. DO NOT EDIT MANUALLY.
0 commit comments