mirror of
https://github.com/assafelovic/gpt-researcher.git
synced 2024-04-09 14:09:35 +03:00
52 lines
1.5 KiB
JavaScript
52 lines
1.5 KiB
JavaScript
/**
|
|
* Creating a sidebar enables you to:
|
|
- create an ordered group of docs
|
|
- render a sidebar for each doc of that group
|
|
- provide next/previous navigation
|
|
|
|
The sidebars can be generated from the filesystem, or explicitly defined here.
|
|
|
|
Create as many sidebars as you want.
|
|
*/
|
|
|
|
module.exports = {
|
|
docsSidebar: [
|
|
'welcome',
|
|
{
|
|
type: 'category',
|
|
label: 'GPT Researcher',
|
|
collapsible: true,
|
|
collapsed: false,
|
|
items: [
|
|
'gpt-researcher/introduction',
|
|
'gpt-researcher/getting-started',
|
|
'gpt-researcher/config',
|
|
'gpt-researcher/example',
|
|
'gpt-researcher/agent_frameworks',
|
|
'gpt-researcher/pip-package',
|
|
'gpt-researcher/troubleshooting',
|
|
],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Tavily API',
|
|
collapsible: true,
|
|
collapsed: false,
|
|
items: [
|
|
'tavily-api/introduction',
|
|
'tavily-api/python-sdk',
|
|
'tavily-api/rest_api',
|
|
'tavily-api/langchain',
|
|
'tavily-api/llamaindex',
|
|
//{'Topics': [{type: 'autogenerated', dirName: 'tavily-api/Topics'}]},
|
|
],
|
|
},
|
|
//{'GPT Researcher': [{type: 'autogenerated', dirName: 'gpt-researcher'}]},
|
|
//{'Tavily API': [{type: 'autogenerated', dirName: 'tavily-api'}]},
|
|
{'Examples': [{type: 'autogenerated', dirName: 'examples'}]},
|
|
'contribute',
|
|
],
|
|
// pydoc-markdown auto-generated markdowns from docstrings
|
|
referenceSideBar: [require("./docs/reference/sidebar.json")]
|
|
};
|