-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
doc: add multi-language guide for authoring and packaging tools
Signed-off-by: Nick Hale <[email protected]>
- Loading branch information
Showing
9 changed files
with
1,585 additions
and
411 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains 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,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> |
This file contains 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
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains 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
Oops, something went wrong.