-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #39 from kris-hansen/anthropic-update
feat: latest anthropic models
- Loading branch information
Showing
3 changed files
with
41 additions
and
1 deletion.
There are no files selected for viewing
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
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 @@ | ||
# Example of using Claude 3.7 Sonnet model | ||
# This example demonstrates using the dated version of Claude 3.7 Sonnet | ||
|
||
step_one: | ||
input: examples/test.csv | ||
model: claude-3-7-sonnet-20250219 | ||
action: "Analyze this CSV file and provide detailed insights about the data." | ||
output: STDOUT | ||
|
||
# Example of using Claude 3.7 Sonnet latest | ||
step_two: | ||
input: examples/test.csv | ||
model: claude-3-7-sonnet-latest | ||
action: "Analyze this CSV file and provide detailed insights about the data." | ||
output: STDOUT | ||
|
||
# Example of using Claude 3.5 Haiku latest | ||
step_three: | ||
input: examples/test.csv | ||
model: claude-3-5-haiku-latest | ||
action: "Analyze this CSV file and list the key points." | ||
output: STDOUT | ||
|
||
# Example of using Claude 3.5 Haiku with specific date | ||
step_four: | ||
input: examples/test.csv | ||
model: claude-3-5-haiku-20241022 | ||
action: "Analyze this CSV file and list the key points." | ||
output: STDOUT |
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