Skip to content

Commit d3a5ea7

Browse files
committed
fixed broken links (#6553)
<!-- ## title your PR with this format: "[SDK/Dashboard/Portal] Feature/Fix: Concise title for the changes" If you did not copy the branch name from Linear, paste the issue tag here (format is TEAM-0000): ## Notes for the reviewer Anything important to call out? Be sure to also clarify these in your comments. ## How to test Unit tests, playground, etc. --> <!-- start pr-codex --> --- ## PR-Codex overview This PR focuses on updating documentation and modifying the sidebar structure in the `Nebula` application, including changes to links and adding a new FAQ section. ### Detailed summary - Added a new FAQ section in `faqs/page.mdx` about using Nebula in a stateless manner. - Changed the sidebar entry from `MCP Server` to `MCP Clients` in `sidebar.tsx`. - Updated the link for `Examples` in `sidebar.tsx` to point to a GitHub repository. > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` <!-- end pr-codex -->
1 parent 1a9448e commit d3a5ea7

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

apps/portal/src/app/nebula/faqs/page.mdx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,10 @@ The context size or window is 128k tokens or approximately 96,000 words which ma
4646
Nebula is not currently open source. We are exploring open sourcing Nebula in the future.
4747
</Details>
4848

49+
<Details summary="Can Nebula be used in a stateless manner?">
50+
Depending on the use case, Nebula can be used in a stateless manner by not reusing the same session. Nebula learns from each session, so having more contextual requests will be beneficial and are recommended.
51+
</Details>
52+
4953
<Details summary="When will pricing be available for Nebula?">
5054
Pricing options will be available in beta. Nebula is still being tested in alpha.
5155
</Details>

apps/portal/src/app/nebula/mcp-server/integrations/claude-desktop/page.mdx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# Claude Desktop
22

3-
43
Learn how to add the MCP server to Claude Desktop:
54

65
1. Install the MCP: `pipx install thirdweb-mcp`

apps/portal/src/app/nebula/sidebar.tsx

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -172,8 +172,8 @@ export const sidebar: SideBar = {
172172
href: "/nebula/mcp-server/integrations/claude-desktop",
173173
},
174174
{
175-
name: "MCP Server",
176-
href: "/nebula/mcp-server/integrations/mcp-server",
175+
name: "MCP Clients",
176+
href: "/nebula/mcp-server/integrations/mcp-clients",
177177
},
178178
],
179179
},
@@ -185,7 +185,6 @@ export const sidebar: SideBar = {
185185
links: [
186186
{
187187
name: "Python SDK",
188-
href: "/nebula/tools/python-sdk",
189188
icon: <Code />,
190189
links: [
191190
{
@@ -194,7 +193,7 @@ export const sidebar: SideBar = {
194193
},
195194
{
196195
name: "Examples",
197-
href: "/nebula/tools/python-sdk/examples",
196+
href: "https://github.com/thirdweb-dev/ai/tree/main/python/examples",
198197
},
199198
],
200199
},

0 commit comments

Comments
 (0)