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

doc: add multi-language guide for authoring and packaging tools #561

Merged
merged 2 commits into from
Nov 13, 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
8 changes: 0 additions & 8 deletions docs/docs/03-guides/01-first-tool.md

This file was deleted.

29 changes: 29 additions & 0 deletions docs/docs/03-guides/01-first-tool.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';

import PythonHashToolReadme from '../../snippets/python-hash-tool-readme.md.mdx';
import NodeHashToolReadme from '../../snippets/node-hash-tool-readme.md.mdx';
import GoHashToolReadme from '../../snippets/go-hash-tool-readme.md.mdx';

# Writing your First Tool

While Otto8 ships with a robust library of built-in [Tools](../02-concepts/03-tools.md), building custom
Tools tailored to your ecosystem will supercharge your Agents.

The following guides will show you how to write and package custom Tools in Python, Node.js, and Go;
unleashing the full potential of your Agents by enabling them to integrate with any data source, service,
or platform with just a few lines of code.

<Tabs>
<TabItem value="python" label="Python" default>
<PythonHashToolReadme />
</TabItem>

<TabItem value="node" label="Node.js" default>
<NodeHashToolReadme />
</TabItem>

<TabItem value="go" label="Go" default>
<GoHashToolReadme />
</TabItem>
</Tabs>
1 change: 0 additions & 1 deletion docs/docs/03-guides/03-workflows.md

This file was deleted.

4 changes: 4 additions & 0 deletions docs/docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@ const config: Config = {
],
],

plugins: [
require.resolve('./src/plugins/fetch-snippets'),
],

themeConfig: {
// Replace with your project's social card
image: 'img/otto8-logo-blue-black-text.svg',
Expand Down
Loading