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

Added More Indepth Tool Documentation For Anthropic API #503

Merged
merged 7 commits into from
Nov 19, 2024
Merged
Show file tree
Hide file tree
Changes from 3 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
TKTSWalker marked this conversation as resolved.
Show resolved Hide resolved
TKTSWalker marked this conversation as resolved.
Show resolved Hide resolved
TKTSWalker marked this conversation as resolved.
Show resolved Hide resolved
TKTSWalker marked this conversation as resolved.
Show resolved Hide resolved

Large diffs are not rendered by default.

19 changes: 18 additions & 1 deletion examples/anthropic_examples/anthropicguide.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,13 +63,30 @@ In this example, we generate a script line for a mech based on it's health and t

## Tool Example; Cyberware

In this example, we have the LLM call a simulated tool which gives one random piece of Cyberware based on the user's requested company. From there, the AI tells the user if the cyberware is good for the user's intended purpose. (combatant, hacker, etc.),
In this example, we have the LLM call a simulated tool which gives one random piece of Cyberware based on the user's requested company. From there, the AI tells the user if the cyberware is good for the user's intended purpose. (combatant, hacker, etc.).

[Access the Journal By Clicking Here](./antrophic-example-tool.ipynb)




> [!WARNING]
> If you want to use the tools system, please look at the journal below! This gives examples related to knowing when a tool was used, some practices for calling a function from an API and returning it among other things! Using it is NOT the same as the other examples!


## Tool Deepdive; VEGA Hell Combat System

In this example, we look at the tool system through a deeper dive; we will use our LLM assistant, VEGA, to get three missions from an API and determine which deserves priority. Then, we will send a number of enemies we want to scan for during combat while also getting our weapons inventory (using two tools at the same time). VEGA will tell us the bet way in which to combat these enemies through a combat strategy.

[Access the Journal By Clicking Here](./agentops-anthropic-understanding-tools.ipynb)


[You should also look at Anthropic's Tool Documents!](https://docs.anthropic.com/en/docs/build-with-claude/tool-use)






## Looking for a Barebones, Straight To The Point Journal?

Expand Down
Loading