Skip to content

Commit

Permalink
adding v1.3, updating prop desc (PipedreamHQ#6057)
Browse files Browse the repository at this point in the history
  • Loading branch information
dannyroosevelt authored Apr 17, 2023
1 parent be5a879 commit 774bb3f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions components/anthropic/actions/chat/chat.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ import constants from "../common/constants.mjs";

export default {
name: "Chat",
version: "0.0.1",
version: "0.0.2",
key: "anthropic-chat",
description: "The Chat API. [See docs here](https://console.anthropic.com/docs/api/reference#-v1-complete)",
type: "action",
props: {
anthropic,
model: {
label: "Model",
description: "Which version of Claude answers your request. E.g. `claude-v1`",
description: "Select the model to use for your query. Defaults to the `claude-v1` model, which is recommended by Anthropic, and always uses their latest stable version.",
type: "string",
options: constants.COMPLETION_MODELS,
default: constants.COMPLETION_MODELS[0],
Expand Down
1 change: 1 addition & 0 deletions components/anthropic/actions/common/constants.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ export default {
"claude-v1",
"claude-v1.0",
"claude-v1.2",
"claude-v1.3",
"claude-instant-v1",
"claude-instant-v1.0",
],
Expand Down
2 changes: 1 addition & 1 deletion components/anthropic/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pipedream/anthropic",
"version": "0.0.2",
"version": "0.0.3",
"description": "Pipedream Anthropic (Claude) Components",
"main": "app/anthropic.app.mjs",
"keywords": [
Expand Down

0 comments on commit 774bb3f

Please sign in to comment.