Anthropic (Independent Publisher)

Claude is a large language model (LLM) built by Anthropic. It's trained to be a helpful assistant in a conversational tone.
This connector is available in the following products and regions:
Service | Class | Regions |
---|---|---|
Logic Apps | Standard | All Logic Apps regions except the following: - Azure Government regions - Azure China regions - US Department of Defense (DoD) |
Power Automate | Premium | All Power Automate regions except the following: - US Government (GCC) - US Government (GCC High) - China Cloud operated by 21Vianet - US Department of Defense (DoD) |
Power Apps | Premium | All Power Apps regions except the following: - US Government (GCC) - US Government (GCC High) - China Cloud operated by 21Vianet - US Department of Defense (DoD) |
Contact | |
---|---|
Name | Troy Taylor |
URL | https://www.hitachisolutions.com |
ttaylor@hitachisolutions.com |
Connector Metadata | |
---|---|
Publisher | Troy Taylor |
Website | https://www.anthropic.com/ |
Privacy policy | https://vault.pactsafe.io/s/9f502c93-cb5c-4571-b205-1e479da61794/legal.html#privacy |
Categories | AI |
Creating a connection
The connector supports the following authentication types:
Default | Parameters for creating connection. | All regions | Not shareable |
Default
Applicable: All regions
Parameters for creating connection.
This is not shareable connection. If the power app is shared with another user, another user will be prompted to create new connection explicitly.
Name | Type | Description | Required |
---|---|---|---|
API Key | securestring | The API Key for this api | True |
Throttling Limits
Name | Calls | Renewal Period |
---|---|---|
API calls per connection | 100 | 60 seconds |
Actions
Ask Claude |
Send a prompt to Claude for completion. |
Ask Claude
Send a prompt to Claude for completion.
Parameters
Name | Key | Required | Type | Description |
---|---|---|---|---|
Prompt
|
prompt | True | string |
The prompt you want Claude to complete. |
Model
|
model | string |
The version of Claude answering your request. |
|
Max Tokens To Sample
|
max_tokens_to_sample | True | integer |
A maximum number of tokens to generate before stopping. |
Stop Sequences
|
stop_sequences | array of string |
A list of strings upon which to stop generating. You probably want [" Human:"], as that's the cue for the next turn in the dialog agent. |
|
Stream
|
stream | boolean |
Whether to incrementally stream the response using SSE. |
|
Temperature
|
temperature | float |
Amount of randomness injected into the response. Ranges from 0 to 1. Use temp closer to 0 for analytical / multiple choice, and temp closer to 1 for creative and generative tasks. |
|
Top K
|
top_k | integer |
Only sample from the top K options for each subsequent token. |
|
Top P
|
top_p | float |
Does nucleus sampling, in which we compute the cumulative distribution over all the options for each subsequent token in decreasing probability order and cut it off once it reaches a particular probability specified by top_p. |
Returns
Name | Path | Type | Description |
---|---|---|---|
Completion
|
completion | string |
The completion. |
Stop
|
stop | string |
The stop. |
Stop Reason
|
stop_reason | string |
The stop reason. |
Truncated
|
truncated | boolean |
Whether truncated. |
Log ID
|
log_id | string |
The log identifier. |
Model
|
model | string |
The model. |
Exception
|
exception | string |
The exception. |