Last active
March 29, 2024 13:21
-
-
Save vladstudio/92efe283453f5f22d4606947b9f82719 to your computer and use it in GitHub Desktop.
Raycast LLM custom script
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
#!/bin/bash | |
# Required parameters: | |
# @raycast.schemaVersion 1 | |
# @raycast.title LLM | |
# @raycast.mode fullOutput | |
# Optional parameters: | |
# @raycast.icon 🤖 | |
# @raycast.argument1 { "type": "text", "placeholder": "Prompt" } | |
# Documentation: | |
# @raycast.description LLM | |
# @raycast.author vladstudio | |
# @raycast.authorURL https://raycast.com/vladstudio | |
llm -m claude-3-opus "$1" |
Author
vladstudio
commented
Mar 5, 2024
This is great thanks was looking for this one 💯
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment