Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
b7a4fe4
feat: datastores in agent-spec
youssef62 Dec 10, 2025
6b604b7
feat: MessageSummarizationTransforms
youssef62 Dec 18, 2025
e8d5a06
feat: add datastores and transforms with tests and docs
youssef62 Dec 18, 2025
5630bb9
doc: correct ref for transforms and datastores
youssef62 Dec 19, 2025
343d94a
doc: add specs of datastore
youssef62 Dec 19, 2025
dc5ed54
doc: add header comments
youssef62 Dec 19, 2025
8351ad7
doc: style improvement to datastore specs
youssef62 Dec 19, 2025
654f91d
doc: stylistic changes to spec
youssef62 Dec 19, 2025
2bab05b
doc: added transforms description in the specs
youssef62 Dec 19, 2025
7d2d021
refactor: split tests files to conftests
youssef62 Dec 19, 2025
ef880d5
feat: agent can take list of transforms
youssef62 Dec 19, 2025
caf127f
feat: agent raises with unsupported version
youssef62 Dec 19, 2025
038817c
fix: added correct version for datastores, transforms, dbconfigs, llm…
youssef62 Dec 22, 2025
a8f8a09
fix: update .yaml with transforms=[]
youssef62 Dec 22, 2025
9ede723
refactor: correct typo in tests
youssef62 Dec 22, 2025
dd2392e
fix: correct version of llm configs to ensure deserialized == original
youssef62 Dec 22, 2025
38d2c4e
dev: add versioning tests
youssef62 Dec 22, 2025
f8056e1
tests: add test for deserializing datastore/tranform of wrong version
youssef62 Dec 22, 2025
e680794
fix: add transforms:[] to serialized yamls
youssef62 Dec 22, 2025
1263e44
fix : fails with Optional[Datastore]
youssef62 Dec 22, 2025
ef21f2b
fix: accumulate errors and remove _is_python_type
youssef62 Dec 22, 2025
c29c4eb
fix: make the features belong to 26.1.1
youssef62 Dec 23, 2025
8242b83
doc: stylistic (typos+improvement) changes to doc
youssef62 Dec 23, 2025
d480c8f
doc: explain parameters for summarization transforms in specs
youssef62 Dec 23, 2025
31f09ad
doc: add agentspec_json...26.1.1
youssef62 Dec 23, 2025
c144d54
doc: update agent doc in specs
youssef62 Dec 23, 2025
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
23 changes: 23 additions & 0 deletions docs/pyagentspec/source/_components/all_components.json
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,29 @@
{"path": "pyagentspec.specialized_agent.AgentSpecializationParameters"}
]
},
{
"name": "Datastores",
"path": "datastores",
"classes": [
{"path": "pyagentspec.datastores.Datastore"},
{"path": "pyagentspec.datastores.RelationalDatastore"},
{"path": "pyagentspec.datastores.InMemoryCollectionDatastore"},
{"path": "pyagentspec.datastores.OracleDatabaseDatastore"},
{"path": "pyagentspec.datastores.TlsOracleDatabaseConnectionConfig"},
{"path": "pyagentspec.datastores.MTlsOracleDatabaseConnectionConfig"},
{"path": "pyagentspec.datastores.PostgresDatabaseDatastore"},
{"path": "pyagentspec.datastores.TlsPostgresDatabaseConnectionConfig"}
]
},
{
"name": "Transforms",
"path": "transforms",
"classes": [
{"path": "pyagentspec.transforms.MessageTransform"},
{"path": "pyagentspec.transforms.MessageSummarizationTransform"},
{"path": "pyagentspec.transforms.ConversationSummarizationTransform"}
]
},
{
"name": "A2A",
"path": "a2a",
Expand Down
Loading