Anthropic
Generates texts with using the Anthropic Batch API.
AnthropicClient
Bases: BatchClient
Source code in dactyl_generation/anthropic_generation.py
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 | |
__init__(api_key, version)
summary Constructor for Anthropic client.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
api_key
|
str
|
Anthropic API key. |
required |
version
|
str
|
Anthropic API version to use. |
required |
Source code in dactyl_generation/anthropic_generation.py
25 26 27 28 29 30 31 32 33 34 35 36 37 38 | |
convert_anthropic_system_message_to_openai_system_message(anthropic_message)
staticmethod
Converts Anthropic API system message to OpenAI API system message. Doesn't support cache control yet!
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
anthropic_message
|
dict
|
dictionary containing system prompt |
required |
Returns:
| Name | Type | Description |
|---|---|---|
anthropic_system_prompt |
dict
|
dictionary containing Anthropic API message |
Source code in dactyl_generation/anthropic_generation.py
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 | |
convert_openai_system_message_to_anthropic_system_message(openai_message)
staticmethod
Converts OpenAI system message to Anthropic API system message. Doesn't support cache control yet!
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
openai_message
|
dict
|
dictionary containing system prompt |
required |
Returns:
| Name | Type | Description |
|---|---|---|
anthropic_system_prompt |
dict
|
dictionary containing Anthropic API message |
Source code in dactyl_generation/anthropic_generation.py
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 | |
create_batch_job(prompts_df)
Requests message batch to Anthropic API given a list of examples.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
prompts_df
|
DataFrame
|
Dataframe containing prompts to run. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
request_data |
dict
|
requests sent to Anthropic API |
Source code in dactyl_generation/anthropic_generation.py
113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 | |
get_batch_job_output(file_path)
Gets batch job results using saved metadata from a local JSON file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
file_path
|
str
|
local JSON file containing output of the |
required |
Returns:
| Name | Type | Description |
|---|---|---|
df |
DataFrame
|
pandas DataFrame of generations. |
Source code in dactyl_generation/anthropic_generation.py
138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 | |
get_message_batch(prompts_df)
staticmethod
Generate a batch of requests from list of prompts
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
prompts_df
|
DataFrame
|
DataFrame where each row is an API call to the Anthropic API. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
requests |
List[Request]
|
list of requests |
Source code in dactyl_generation/anthropic_generation.py
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 | |