huggingface_tgi
HuggingfaceTGIAPI
Bases: AsyncAPI
Class for asynchronous querying of the Huggingface TGI API endpoint.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
settings
|
Settings
|
The settings for the pipeline/experiment |
required |
log_file
|
str
|
The path to the log file |
required |
Source code in src/prompto/apis/huggingface_tgi/huggingface_tgi.py
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 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 | |
check_environment_variables
staticmethod
For Huggingface TGI, there are some optional variables - HUGGINGFACE_TGI_API_KEY - HUGGINGFACE_TGI_API_ENDPOINT
These are optional only if the model_name is passed in the prompt dictionary. If the model_name is not passed, then the default values are taken from these environment variables.
These are checked in the check_prompt_dict method to ensure that the required environment variables are set.
Returns:
| Type | Description |
|---|---|
list[Exception]
|
A list of exceptions or warnings if the environment variables are not set |
Source code in src/prompto/apis/huggingface_tgi/huggingface_tgi.py
check_prompt_dict
staticmethod
For Huggingface TGI, we make the following model-specific checks: - “prompt” must be a string or a list of strings - model-specific environment variables (HUUGINGFACE_TGI_API_KEY_{identifier}, HUGGINGFACE_TGI_API_ENDPOINT_{identifier}) (where identifier is the model name with invalid characters replaced by underscores obtained using get_model_name_identifier function) can be set, or the default environment variables must be set
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
prompt_dict
|
dict
|
The prompt dictionary to check |
required |
Returns:
| Type | Description |
|---|---|
list[Exception]
|
A list of exceptions or warnings if the prompt dictionary is not valid |
Source code in src/prompto/apis/huggingface_tgi/huggingface_tgi.py
query
async
Async Method for querying the API/model asynchronously.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
prompt_dict
|
dict
|
The prompt dictionary to use for querying the model |
required |
index
|
int | str
|
The index of the prompt in the experiment |
'NA'
|
Returns:
| Type | Description |
|---|---|
dict
|
Completed prompt_dict with “response” key storing the response(s) from the LLM |
Raises:
| Type | Description |
|---|---|
Exception
|
If an error occurs during the querying process |