quart
QuartAPI
Bases: AsyncAPI
Class for querying the Quart API asynchronously.
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/quart/quart.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 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 | |
check_environment_variables
staticmethod
For Quart, there are some optional environment variables: - QUART_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.
If QUART_API_ENDPOINT is set, we check if the API endpoint.
Returns:
| Type | Description |
|---|---|
list[Exception]
|
A list of exceptions or warnings if the environment variables are not set |
Source code in src/prompto/apis/quart/quart.py
check_prompt_dict
staticmethod
For Quart, we make the following model-specific checks: - “prompt” must be a string - odel-specific endpoint (QUART_API_ENDPOINT_{identifier}) (where identifier is the model name with invalid characters replaced by underscores obtained using get_model_name_identifier function) or the default endpoint 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/quart/quart.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 |