Skip to content

feat: Support for database backend Task Store #259

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 22 commits into from
Jul 1, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix types test
  • Loading branch information
kthota-g committed Jun 30, 2025
commit a6be65acd81878d5096065cf819b2ffabb522bcc
2 changes: 0 additions & 2 deletions tests/test_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -918,7 +918,6 @@ def test_a2a_request_root_model() -> None:
'jsonrpc': '2.0',
'method': 'tasks/pushNotificationConfig/set',
'params': task_push_config.model_dump(),
'id': 2,
}
a2a_req_set_push_req = A2ARequest.model_validate(set_push_notif_req_data)
assert isinstance(
Expand All @@ -938,7 +937,6 @@ def test_a2a_request_root_model() -> None:
'jsonrpc': '2.0',
'method': 'tasks/pushNotificationConfig/get',
'params': id_params.model_dump(),
'id': 2,
}
a2a_req_get_push_req = A2ARequest.model_validate(get_push_notif_req_data)
assert isinstance(
Expand Down
Loading