Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sidebar update #173

Merged
merged 2 commits into from
Apr 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 8 additions & 7 deletions docs/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import DocCardList from '@theme/DocCardList';

**Superface allows GPT and agent builders to easily connect to any API, enabling them to create, retrieve, and manage data from external platforms.**

![A diagram that represents Superface as the connection between OpenAI Custom GPT and other tools](/img/HubIllustration2.webp)
<!--![A diagram that represents Superface as the connection between OpenAI Custom GPT and other tools](/img/HubIllustration2.webp)-->

<section className="row">
<article className="col col--6 margin-bottom--sm">
Expand All @@ -35,20 +35,21 @@ import DocCardList from '@theme/DocCardList';
<section className="row">
<article className="col col--6 margin-bottom--sm">
<a
href="/docs/tools"
href="/docs/support"
className="card padding--lg cardContainer_node_modules-@docusaurus-theme-classic-lib-theme-DocCard-styles-module"
>
<h2>🛠️ Tools</h2>
<p>Add, build and manage the tools you need for your GPT or agent.</p>
<h2>👩‍💻 AI Agent</h2>
<p>Automate tasks and business processes with tools you use daily.</p>
</a>
</article>
<article className="col col--6 margin-bottom--sm">
<a
href="/docs/support"
href="/docs/tools"
className="card padding--lg cardContainer_node_modules-@docusaurus-theme-classic-lib-theme-DocCard-styles-module"
>
<h2>ℹ️ Support</h2>
<p>Questions, comments and feedback are welcome. We're here for you!</p>
<h2>🛠️ Tools</h2>
<p>Add, build and manage the tools you need for your GPT or agent.</p>
</a>
</article>

</section>
37 changes: 19 additions & 18 deletions sidebars.js
Original file line number Diff line number Diff line change
Expand Up @@ -104,17 +104,32 @@ module.exports = {
type: 'category',
label: 'Connect GPTs to APIs',
link: {type: 'doc', id: 'gpts/index'},
collapsed: false,
collapsed: true,
items: [
'gpts/setup',
'gpts/user-authentication',
'gpts/limits'
]
},
{
type: 'category',
label: 'AI Agent',
link: {type: 'doc', id: 'agent/index'},
collapsed: true,
items: [
'agent/interface',
// 'agent/adding-tools',
// 'agent/configure-providers',
// 'agent/updating-tools',
'agent/changing-models',
'agent/custom-instructions',
'agent/scheduling-tasks'
]
},
{
type: 'category',
label: 'Hub API',
collapsed: false,
collapsed: true,
items: [
'api/index',
'api/setup',
Expand All @@ -136,11 +151,12 @@ module.exports = {
}
]
},

{
type: 'category',
label: 'Managing Tools',
link: {type: 'doc', id: 'tools/index'},
collapsed: false,
collapsed: true,
items: [
'tools/adding-tools',
'tools/create-tools',
Expand Down Expand Up @@ -190,21 +206,6 @@ module.exports = {
label: 'Superface GPT',
id: 'superface-gpt'
},
{
type: 'category',
label: 'Superface Agent',
link: {type: 'doc', id: 'agent/index'},
collapsed: true,
items: [
'agent/interface',
// 'agent/adding-tools',
// 'agent/configure-providers',
// 'agent/updating-tools',
'agent/changing-models',
'agent/custom-instructions',
'agent/scheduling-tasks'
]
},
{
type: 'doc',
id: 'support',
Expand Down
Loading