afnio.models
afnio.models.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.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 | |
afnio.models.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 | |