File tree Expand file tree Collapse file tree 3 files changed +7
-6
lines changed
docs/docs/gpt-researcher/retrievers Expand file tree Collapse file tree 3 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -87,15 +87,16 @@ Each MCP configuration dictionary supports these keys:
87
87
88
88
| Key | Description | Example | Required |
89
89
| -----| -------------| ---------| ----------|
90
- | ` name ` | Identifier for the MCP server | ` "github" ` | No |
90
+ | ` name ` | Identifier for the MCP server | ` "github" ` | Yes |
91
91
| ` command ` | Command to start the server | ` "python" ` | Yes* |
92
- | ` args ` | Arguments for the server command | ` ["-m", "my_server"] ` | No |
92
+ | ` args ` | Arguments for the server command | ` ["-m", "my_server"] ` | Yes * |
93
93
| ` env ` | Environment variables for the server | ` {"API_KEY": "key"} ` | No |
94
- | ` connection_url ` | URL for remote connections | ` "wss://api.example.com" ` | Yes* |
94
+ | ` connection_url ` | URL for remote connections | ` "wss://api.example.com" ` | Yes** |
95
95
| ` connection_type ` | Connection type (auto-detected) | ` "websocket" ` | No |
96
96
| ` connection_token ` | Authentication token | ` "bearer_token" ` | No |
97
97
98
- * Either ` command ` (for local servers) or ` connection_url ` (for remote servers) is required.
98
+ ** Local servers** : Require ` name ` , ` command ` , and ` args `
99
+ ** Remote servers** : Require ` name ` and ` connection_url `
99
100
100
101
## Examples
101
102
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ gpt-researcher = { workspace = true }
60
60
61
61
[project ]
62
62
name = " gpt-researcher"
63
- version = " 0.13.5 "
63
+ version = " 0.14.0 "
64
64
description = " GPT Researcher is an autonomous agent designed for comprehensive online research on a variety of tasks."
65
65
authors = [{
name =
" Assaf Elovic" ,
email =
" [email protected] " }]
66
66
license = { text = " MIT" }
Original file line number Diff line number Diff line change 1
1
from setuptools import find_packages , setup
2
2
3
- LATEST_VERSION = "0.13.5 "
3
+ LATEST_VERSION = "0.14.0 "
4
4
5
5
exclude_packages = [
6
6
"selenium" ,
You can’t perform that action at this time.
0 commit comments