-
Notifications
You must be signed in to change notification settings - Fork 71
Move ADK into its own tab #468
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
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| --- | ||
| title: Botpress ADK | ||
| sidebarTitle: Get started | ||
| --- | ||
|
|
||
| The Botpress Agent Development Kit (ADK) is a developer-first TypeScript framework for building AI agents on the Botpress Platform. | ||
|
|
||
| <Card title="Read the full ADK documentation" href="/adk/introduction" icon="book-open" cta="Open the docs"> | ||
| Setup and configuration, conversations, workflows, tools, testing, the Zai LLM utilities, and the CLI reference. | ||
| </Card> | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -88,86 +88,7 @@ | |
| { | ||
| "group": "ADK", | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. suggestion: same as above, remove this group from the sidebar |
||
| "pages": [ | ||
| "/adk/introduction", | ||
| "/adk/quickstart", | ||
| { | ||
| "group": "Setting up your agent", | ||
| "pages": [ | ||
| "/adk/setup/configuration", | ||
| "/adk/setup/environment", | ||
| "/adk/setup/integrations" | ||
| ] | ||
| }, | ||
| { | ||
| "group": "Handling conversations", | ||
| "pages": [ | ||
| "/adk/conversations/setup", | ||
| "/adk/conversations/ai-execution", | ||
| "/adk/conversations/tools", | ||
| "/adk/conversations/messages", | ||
| "/adk/conversations/custom-components", | ||
| "/adk/conversations/lifecycle", | ||
| "/adk/conversations/state" | ||
| ] | ||
| }, | ||
| { | ||
| "group": "Handling longform logic", | ||
| "pages": [ | ||
| "/adk/workflows/create", | ||
| "/adk/workflows/steps", | ||
| "/adk/workflows/request-notify" | ||
| ] | ||
| }, | ||
| { | ||
| "group": "Actions and triggers", | ||
| "pages": [ | ||
| "/adk/external/actions", | ||
| "/adk/external/triggers" | ||
| ] | ||
| }, | ||
| { | ||
| "group": "Working with data", | ||
| "pages": [ | ||
| "/adk/data/tables", | ||
| "/adk/data/knowledge" | ||
| ] | ||
| }, | ||
| { | ||
| "group": "Testing and debugging", | ||
| "pages": [ | ||
| "/adk/testing/evals", | ||
| "/adk/testing/agent-steps", | ||
| "/adk/testing/debugging", | ||
| "/adk/testing/scripts" | ||
| ] | ||
| }, | ||
| { | ||
| "group": "LLM Utilities", | ||
| "pages": [ | ||
| "/adk/zai/overview", | ||
| "/adk/zai/extract", | ||
| "/adk/zai/generate", | ||
| "/adk/zai/classify" | ||
| ] | ||
| }, | ||
| { | ||
| "group": "AI-native development", | ||
| "pages": [ | ||
| "/adk/ai-native/skills" | ||
| ] | ||
| }, | ||
| { | ||
| "group": "Advanced", | ||
| "pages": [ | ||
| "/adk/advanced/hitl" | ||
| ] | ||
| }, | ||
| { | ||
| "group": "CLI", | ||
| "pages": [ | ||
| "/adk/cli-reference" | ||
| ] | ||
| } | ||
| "/adk" | ||
| ] | ||
| }, | ||
| { | ||
|
|
@@ -182,7 +103,10 @@ | |
| { | ||
| "group": "Nodes", | ||
| "icon": "square-mouse-pointer", | ||
| "pages": ["/studio/concepts/nodes/introduction", "/studio/concepts/nodes/autonomous-node"] | ||
| "pages": [ | ||
| "/studio/concepts/nodes/introduction", | ||
| "/studio/concepts/nodes/autonomous-node" | ||
| ] | ||
| }, | ||
| { | ||
| "group": "Cards", | ||
|
|
@@ -504,15 +428,109 @@ | |
| }, | ||
| { | ||
| "group": "Hooks", | ||
| "pages": ["/webchat/react-library/hooks/use-webchat-client"] | ||
| "pages": [ | ||
| "/webchat/react-library/hooks/use-webchat-client" | ||
| ] | ||
| } | ||
| ] | ||
| } | ||
| ] | ||
| }, | ||
| { | ||
| "group": "Desk", | ||
| "pages": ["desk/introduction"] | ||
| "pages": [ | ||
| "desk/introduction" | ||
| ] | ||
| } | ||
| ] | ||
| }, | ||
| { | ||
| "tab": "ADK", | ||
| "pages": [ | ||
| { | ||
| "group": "Get started", | ||
| "pages": [ | ||
| "/adk/introduction", | ||
| "/adk/quickstart" | ||
| ] | ||
| }, | ||
| { | ||
| "group": "Setting up your agent", | ||
| "pages": [ | ||
| "/adk/setup/configuration", | ||
| "/adk/setup/environment", | ||
| "/adk/setup/integrations" | ||
| ] | ||
| }, | ||
| { | ||
| "group": "Handling conversations", | ||
| "pages": [ | ||
| "/adk/conversations/setup", | ||
| "/adk/conversations/ai-execution", | ||
| "/adk/conversations/tools", | ||
| "/adk/conversations/messages", | ||
| "/adk/conversations/custom-components", | ||
| "/adk/conversations/lifecycle", | ||
| "/adk/conversations/state" | ||
| ] | ||
| }, | ||
| { | ||
| "group": "Handling longform logic", | ||
| "pages": [ | ||
| "/adk/workflows/create", | ||
| "/adk/workflows/steps", | ||
| "/adk/workflows/request-notify" | ||
| ] | ||
| }, | ||
| { | ||
| "group": "Actions and triggers", | ||
| "pages": [ | ||
| "/adk/external/actions", | ||
| "/adk/external/triggers" | ||
| ] | ||
| }, | ||
| { | ||
| "group": "Working with data", | ||
| "pages": [ | ||
| "/adk/data/tables", | ||
| "/adk/data/knowledge" | ||
| ] | ||
| }, | ||
| { | ||
| "group": "Testing and debugging", | ||
| "pages": [ | ||
| "/adk/testing/evals", | ||
| "/adk/testing/agent-steps", | ||
| "/adk/testing/debugging", | ||
| "/adk/testing/scripts" | ||
| ] | ||
| }, | ||
| { | ||
| "group": "LLM Utilities", | ||
| "pages": [ | ||
| "/adk/zai/overview", | ||
| "/adk/zai/extract", | ||
| "/adk/zai/generate", | ||
| "/adk/zai/classify" | ||
| ] | ||
| }, | ||
| { | ||
| "group": "AI-native development", | ||
| "pages": [ | ||
| "/adk/ai-native/skills" | ||
| ] | ||
| }, | ||
| { | ||
| "group": "Advanced", | ||
| "pages": [ | ||
| "/adk/advanced/hitl" | ||
| ] | ||
| }, | ||
| { | ||
| "group": "CLI", | ||
| "pages": [ | ||
| "/adk/cli-reference" | ||
| ] | ||
| } | ||
| ] | ||
| }, | ||
|
|
@@ -527,7 +545,10 @@ | |
| { | ||
| "group": "First steps", | ||
| "expanded": true, | ||
| "pages": ["tutorial/basics/first-steps/prompting", "tutorial/basics/first-steps/adding-knowledge"] | ||
| "pages": [ | ||
| "tutorial/basics/first-steps/prompting", | ||
| "tutorial/basics/first-steps/adding-knowledge" | ||
| ] | ||
| }, | ||
| { | ||
| "group": "Custom logic", | ||
|
|
@@ -603,7 +624,10 @@ | |
| "source": "./admin-openapi.json", | ||
| "directory": "api-reference/admin-api/openapi" | ||
| }, | ||
| "pages": ["api-reference/admin-api/getting-started", "api-reference/admin-api/concepts"] | ||
| "pages": [ | ||
| "api-reference/admin-api/getting-started", | ||
| "api-reference/admin-api/concepts" | ||
| ] | ||
| }, | ||
| { | ||
| "group": "Files API", | ||
|
|
@@ -624,21 +648,28 @@ | |
| "source": "./tables-openapi.json", | ||
| "directory": "api-reference/tables-api/openapi" | ||
| }, | ||
| "pages": ["api-reference/tables-api/getting-started"] | ||
| "pages": [ | ||
| "api-reference/tables-api/getting-started" | ||
| ] | ||
| }, | ||
| { | ||
| "group": "Runtime API", | ||
| "openapi": { | ||
| "source": "./runtime-openapi.json", | ||
| "directory": "api-reference/runtime-api/openapi" | ||
| }, | ||
| "pages": ["api-reference/runtime-api/getting-started", "api-reference/runtime-api/concepts"] | ||
| "pages": [ | ||
| "api-reference/runtime-api/getting-started", | ||
| "api-reference/runtime-api/concepts" | ||
| ] | ||
| } | ||
| ] | ||
| }, | ||
| { | ||
| "tab": "Changelog", | ||
| "pages": ["changelog"] | ||
| "pages": [ | ||
| "changelog" | ||
| ] | ||
| } | ||
| ], | ||
| "global": { | ||
|
|
||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.