sk-agents
sk_agents
sk_agents.a2a
sk_agents.a2a.redis_task_store
Redis implementation of the TaskStore interface. This implementation uses Redis as the persistent store for Task objects.
sk_agents.a2a.redis_task_store.RedisTaskStore
Bases: TaskStore
Redis implementation of the TaskStore interface.
This class provides Redis-based persistence for Task objects.
Source code in src/sk_agents/a2a/redis_task_store.py
sk_agents.a2a.redis_task_store.RedisTaskStore.__init__
Initialize the RedisTaskStore with a Redis client.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
redis_client
|
Redis
|
An instance of Redis client |
required |
key_prefix
|
str
|
Prefix used for Redis keys (default: "task:") |
'task:'
|
Source code in src/sk_agents/a2a/redis_task_store.py
sk_agents.a2a.redis_task_store.RedisTaskStore.save
async
Saves or updates a task in the Redis store.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
task
|
Task
|
The Task object to save |
required |
Source code in src/sk_agents/a2a/redis_task_store.py
sk_agents.a2a.redis_task_store.RedisTaskStore.get
async
Retrieves a task from the Redis store by ID.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
task_id
|
str
|
The ID of the task to retrieve |
required |
Returns:
Type | Description |
---|---|
Task | None
|
The Task object if found, None otherwise |
Source code in src/sk_agents/a2a/redis_task_store.py
sk_agents.a2a.redis_task_store.RedisTaskStore.delete
async
Deletes a task from the Redis store by ID.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
task_id
|
str
|
The ID of the task to delete |
required |
sk_agents.a2a.response_classifier
sk_agents.a2a.response_classifier.A2AResponseClassifier
A class to classify responses from the A2A agent.
Source code in src/sk_agents/a2a/response_classifier.py
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 |
|
sk_agents.a2a.response_classifier.A2AResponseClassifier.classify_response
async
Classify the response from the A2A agent.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
response
|
str
|
The response from the A2A agent. |
required |
Returns:
Name | Type | Description |
---|---|---|
str |
A2AResponseClassification
|
The classification of the response. |
Source code in src/sk_agents/a2a/response_classifier.py
sk_agents.appv3
class AppV3
@staticmethod def run(name, version, app_config, config, app): pass
sk_agents.authorization
sk_agents.authorization.request_authorizer
sk_agents.authorization.request_authorizer.RequestAuthorizer
Bases: ABC
Source code in src/sk_agents/authorization/request_authorizer.py
sk_agents.authorization.request_authorizer.RequestAuthorizer.authorize_request
abstractmethod
async
Validates the given authorization header and returns a unique identifier for the authenticated user.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
auth_header
|
str
|
The value of the 'Authorization' HTTP header.
Typically, this is in the format 'Bearer |
required |
Returns:
Name | Type | Description |
---|---|---|
str |
str
|
A unique string that identifies the authenticated user. This could be a user ID, username, email, or any other unique identifier suitable for tracking and authorization. |
Examples |
str
|
"user_12345" "alice@example.com" |
Raises:
Type | Description |
---|---|
ValueError
|
If the authorization header is missing, malformed, or invalid. |
AuthenticationError(optional)
|
If used in your implementation, it may be raised to signal an authentication failure. |
Source code in src/sk_agents/authorization/request_authorizer.py
sk_agents.exceptions
sk_agents.exceptions.AgentsException
sk_agents.exceptions.InvalidConfigException
Bases: AgentsException
Exception raised when the provided configuration is invalid
Source code in src/sk_agents/exceptions.py
sk_agents.exceptions.InvalidInputException
Bases: AgentsException
Exception raised when the provided input type is invalid
Source code in src/sk_agents/exceptions.py
sk_agents.exceptions.AgentInvokeException
Bases: AgentsException
Exception raised when invoking an Agent failed
Source code in src/sk_agents/exceptions.py
sk_agents.exceptions.PersistenceCreateError
Bases: AgentsException
Exception raised for errors during task creation.
Source code in src/sk_agents/exceptions.py
sk_agents.exceptions.PersistenceLoadError
Bases: AgentsException
Exception raised for errors during task loading.
Source code in src/sk_agents/exceptions.py
sk_agents.exceptions.PersistenceUpdateError
Bases: AgentsException
Exception raised for errors during task update.
Source code in src/sk_agents/exceptions.py
sk_agents.exceptions.PersistenceDeleteError
Bases: AgentsException
Exception raised for errors during task deletion.
Source code in src/sk_agents/exceptions.py
sk_agents.exceptions.AuthenticationException
Bases: AgentsException
Exception raised errors when authenticating users
Source code in src/sk_agents/exceptions.py
sk_agents.exceptions.PluginCatalogDefinitionException
Bases: AgentsException
Exception raised when the parsed json does not match the PluginCatalogDefinition Model
Source code in src/sk_agents/exceptions.py
sk_agents.exceptions.PluginFileReadException
Bases: AgentsException
Raise this exception when the plugin file fails to be read
Source code in src/sk_agents/exceptions.py
sk_agents.routes
sk_agents.routes.Routes
Source code in src/sk_agents/routes.py
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 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 |
|
sk_agents.routes.Routes.get_stateful_routes
staticmethod
get_stateful_routes(
name: str,
version: str,
description: str,
config: BaseConfig,
state_manager: StateManager,
authorizer: RequestAuthorizer,
input_class: type[UserMessage],
) -> APIRouter
Get the stateful API routes for the given configuration.
Source code in src/sk_agents/routes.py
sk_agents.ska_types
sk_agents.ska_types.HistoryMessage
Bases: BaseModel
A single interaction in a chat history.
'role' - Either 'user' (requestor) or 'assistant' (responder) indicating
who sent the message.
'content' - The content of the message
Source code in src/sk_agents/ska_types.py
sk_agents.ska_types.BaseInput
Bases: KernelBaseModel
The history of a chat interaction between an automated assistant and a human.
Source code in src/sk_agents/ska_types.py
sk_agents.ska_types.BaseInputWithUserContext
Bases: KernelBaseModel
The history of a chat interaction between an automated assistant and a human, along with context about the user.
Source code in src/sk_agents/ska_types.py
sk_agents.state
sk_agents.state.redis_state_manager
Redis implementation of the StateManager interface. This implementation uses Redis as the persistent store for task state management.
sk_agents.state.redis_state_manager.RedisStateManager
Bases: StateManager
Redis implementation of the StateManager interface.
This class provides Redis-based persistence for task state management.
Source code in src/sk_agents/state/redis_state_manager.py
14 15 16 17 18 19 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 |
|
sk_agents.state.redis_state_manager.RedisStateManager.__init__
Initialize the RedisStateManager with a Redis client.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
redis_client
|
Redis
|
An instance of Redis client |
required |
key_prefix
|
str
|
Prefix used for Redis keys (default: "task_state:") |
'task_state:'
|
Source code in src/sk_agents/state/redis_state_manager.py
sk_agents.state.redis_state_manager.RedisStateManager.update_task_messages
async
update_task_messages(
task_id: str, new_message: HistoryMultiModalMessage
) -> list[HistoryMultiModalMessage]
Updates the messages for a specific task.
Appends a new message to the task's message history and returns the complete list of messages.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
task_id
|
str
|
The ID of the task |
required |
new_message
|
HistoryMultiModalMessage
|
The new message to add to the task's history |
required |
Returns:
Type | Description |
---|---|
list[HistoryMultiModalMessage]
|
The complete list of messages for the task |
Source code in src/sk_agents/state/redis_state_manager.py
sk_agents.state.redis_state_manager.RedisStateManager.set_canceled
async
Marks a task as canceled.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
task_id
|
str
|
The ID of the task to mark as canceled |
required |
Source code in src/sk_agents/state/redis_state_manager.py
sk_agents.state.redis_state_manager.RedisStateManager.is_canceled
async
Checks if a task is marked as canceled.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
task_id
|
str
|
The ID of the task to check |
required |
Returns:
Type | Description |
---|---|
bool
|
True if the task is canceled, False otherwise |
Source code in src/sk_agents/state/redis_state_manager.py
sk_agents.stateful
sk_agents.stateful.UserMessage
Bases: BaseModel
New input model for the tealagents/v1alpha1 API version. Unlike BaseMultiModalInput, chat history is maintained server-side.
Source code in src/sk_agents/stateful.py
sk_agents.stateful.TaskState
Bases: BaseModel
Model for the state associated with a Task ID
Source code in src/sk_agents/stateful.py
sk_agents.stateful.RequestState
Bases: BaseModel
Model for the state associated with a Request ID
Source code in src/sk_agents/stateful.py
sk_agents.stateful.StateResponse
sk_agents.stateful.StateManager
Bases: ABC
Abstract base class for state management
Source code in src/sk_agents/stateful.py
sk_agents.stateful.StateManager.create_task
abstractmethod
async
sk_agents.stateful.StateManager.get_task
abstractmethod
async
get_task(task_id: UUID4) -> TaskState
sk_agents.stateful.StateManager.update_task
abstractmethod
async
update_task(task_state: TaskState) -> None
sk_agents.stateful.StateManager.create_request
abstractmethod
async
sk_agents.stateful.StateManager.get_request
abstractmethod
async
get_request(request_id: UUID4) -> RequestState
sk_agents.stateful.StateManager.update_request
abstractmethod
async
update_request(request_state: RequestState) -> None
sk_agents.stateful.InMemoryStateManager
Bases: StateManager
In-memory implementation of state manager
Source code in src/sk_agents/stateful.py
sk_agents.stateful.RedisStateManager
Bases: StateManager
Redis implementation of state manager
Source code in src/sk_agents/stateful.py
sk_agents.stateful.AuthenticationManager
Bases: ABC
Abstract base class for authentication management
Source code in src/sk_agents/stateful.py
sk_agents.stateful.AuthenticationManager.authenticate
abstractmethod
async
sk_agents.stateful.AuthenticationManager.validate_task_access
abstractmethod
async
sk_agents.stateful.MockAuthenticationManager
Bases: AuthenticationManager
Mock implementation of authentication manager for development
Source code in src/sk_agents/stateful.py
sk_agents.tealagents
sk_agents.tealagents.models
sk_agents.tealagents.models.TaskStatus
sk_agents.tealagents.v1alpha1
sk_agents.tealagents.v1alpha1.agent
sk_agents.tealagents.v1alpha1.agent.handler
sk_agents.tealagents.v1alpha1.agent.handler.TealAgentsV1Alpha1Handler
Bases: BaseHandler
Source code in src/sk_agents/tealagents/v1alpha1/agent/handler.py
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 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 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 |
|