afnio.models.model
afnio.models.model.BaseModel
Bases: ABC
An abstraction for a model.
Source code in afnio/models/model.py
20 21 22 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 | |
__init__(provider=None, config=None, usage=None)
Initializes the BaseModel instance.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
provider
|
str
|
The name of the model provider (e.g., |
None
|
config
|
dict | None
|
A dictionary containing provider-specific configuration parameters,
such as model name, temperature, max tokens, etc. This is an internal
implementation detail used by |
None
|
usage
|
dict | None
|
A dictionary to track token usage and cost information. It is typically initialized by subclasses with provider-specific usage metrics and cost structure. |
None
|
Source code in afnio/models/model.py
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 | |
get_provider()
Returns the model provider name.
Returns:
| Name | Type | Description |
|---|---|---|
provider |
str | None
|
The name of the model provider (e.g., |
Source code in afnio/models/model.py
85 86 87 88 89 90 91 92 | |
get_config()
Returns the model configuration.
This includes the model name, temperature, max tokens, and other parameters that are used to configure the model's behavior.
Returns:
| Type | Description |
|---|---|
dict[str, str | float | int]
|
A dictionary containing the model's configuration parameters. |
Source code in afnio/models/model.py
94 95 96 97 98 99 100 101 102 103 | |
update_usage(usage, model_name=None)
Updates the internal token usage statistics and cost.
Each model provider (e.g., OpenAI, Anthropic) may have a different usage format. This method should be implemented by subclasses to ensure correct parsing and aggregation of token usage.
Behavior
- If
model_nameis provided, the method dynamically calculates and updates the cost based on the usage metrics and the pricing for the specified model. - If
model_nameis None, the method copies the cost value directly from theusagedictionary (if present), which is typically used when restoring state from a checkpoint.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
usage
|
dict[str, int]
|
A dictionary containing token usage metrics,
such as |
required |
model_name
|
str
|
The name of the model for which the usage is being updated. If None, cost is copied from usage if available. |
None
|
Raises:
| Type | Description |
|---|---|
NotImplementedError
|
If called on the base class without an implementation. |
Source code in afnio/models/model.py
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 | |
get_usage()
Retrieves the current token usage statistics and cost (in USD).
Returns:
| Type | Description |
|---|---|
dict[str, int]
|
A dictionary containing cumulative token usage statistics since the model instance was initialized. |
Examples:
>>> model.get_usage()
{
'prompt_tokens': 1500,
'completion_tokens': 1200,
'total_tokens': 2700,
'cost': {'amount': 12.00, 'currency': 'USD'}
}
Source code in afnio/models/model.py
131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 | |
clear_usage()
Clears the token usage statistics.
This resets all numerical values in the usage dictionary to zero (including nested values), while preserving the dictionary structure.
Source code in afnio/models/model.py
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 | |
afnio.models.model.TextCompletionModel
Bases: BaseModel
An abstraction for a language model that accepts a prompt composed of a single text input and generates a textual completion.
Source code in afnio/models/model.py
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 | |
__init__(provider=None, **kwargs)
Initializes the TextCompletionModel instance.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
provider
|
str
|
The name of the model provider (e.g., |
None
|
**kwargs
|
Recognized/expected keys are |
{}
|
Source code in afnio/models/model.py
205 206 207 208 209 210 211 212 213 214 | |
acomplete(prompt, **kwargs)
async
Asynchronous method to generate a completion for the given prompt.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
prompt
|
str
|
The input text for which the model should generate a completion. |
required |
**kwargs
|
Additional parameters to configure the model's behavior during chat completion. This may include options such as:
For a complete list of supported parameters for each model, refer to the respective API documentation. |
{}
|
Returns:
| Type | Description |
|---|---|
str
|
A string containing the generated completion. |
Source code in afnio/models/model.py
216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 | |
complete(prompt, **kwargs)
Synchronous method to generate a completion for the given prompt.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
prompt
|
str
|
The input text for which the model should generate a completion. |
required |
**kwargs
|
Additional parameters to configure the model's behavior during chat completion. This may include options such as:
For a complete list of supported parameters for each model, refer to the respective API documentation. |
{}
|
Returns:
| Type | Description |
|---|---|
str
|
A string containing the generated completion. |
Source code in afnio/models/model.py
239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 | |
afnio.models.model.ChatCompletionModel
Bases: BaseModel
An abstraction for a language model that accepts a prompt composed of an array of messages containing instructions for the model. Each message can have a different role, influencing how the model interprets the input.
Source code in afnio/models/model.py
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 | |
__init__(provider=None, **kwargs)
Initializes the ChatCompletionModel instance.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
provider
|
str
|
The name of the model provider (e.g., |
None
|
**kwargs
|
Recognized/expected keys are |
{}
|
Source code in afnio/models/model.py
271 272 273 274 275 276 277 278 279 280 | |
achat(messages, **kwargs)
async
Asynchronous method to handle chat-based interactions with the model.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
messages
|
list[dict[str, str]]
|
A list of messages, where each message is represented as a
dictionary with |
required |
**kwargs
|
Additional parameters to configure the model's behavior during chat completion. This may include options such as:
For a complete list of supported parameters for each model, refer to the respective API documentation. |
{}
|
Returns:
| Type | Description |
|---|---|
str
|
A string containing the model's response to the chat messages. |
Source code in afnio/models/model.py
283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 | |
chat(messages, **kwargs)
Synchronous method to handle chat-based interactions with the model.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
messages
|
list[dict[str, str]]
|
A list of messages, where each message is represented as a
dictionary with |
required |
**kwargs
|
Additional parameters to configure the model's behavior during chat completion. This may include options such as:
For a complete list of supported parameters for each model, refer to the respective API documentation. |
{}
|
Returns:
| Type | Description |
|---|---|
str
|
A string containing the model's response to the chat messages. |
Source code in afnio/models/model.py
308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 | |
afnio.models.model.EmbeddingModel
Bases: BaseModel
An abstraction for a model that generates embeddings for input texts.
Source code in afnio/models/model.py
335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 | |
__init__(provider=None, **kwargs)
Initializes the EmbeddingModel instance.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
provider
|
str
|
The name of the model provider (e.g., |
None
|
**kwargs
|
Recognized/expected keys are |
{}
|
Source code in afnio/models/model.py
340 341 342 343 344 345 346 347 348 349 | |
aembed(input, **kwargs)
async
Asynchronous method to generate embeddings for the given input texts.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
input
|
list[str]
|
A list of input strings for which embeddings should be generated. |
required |
**kwargs
|
Additional parameters to configure the model's behavior during chat completion. This may include options such as:
For a complete list of supported parameters for each model, refer to the respective API documentation. |
{}
|
Returns:
| Type | Description |
|---|---|
list[list[float]]
|
A list of embeddings, where each embedding is represented as a list of floats corresponding to the input strings. |
Source code in afnio/models/model.py
351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 | |
embed(input, **kwargs)
Synchronous method to generate embeddings for the given input texts.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
input
|
list[str]
|
A list of input strings for which embeddings should be generated. |
required |
**kwargs
|
Additional parameters to configure the model's behavior during chat completion. This may include options such as:
For a complete list of supported parameters for each model, refer to the respective API documentation. |
{}
|
Returns:
| Type | Description |
|---|---|
list[list[float]]
|
A list of embeddings, where each embedding is represented as a list of floats corresponding to the input strings. |
Source code in afnio/models/model.py
375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 | |