feat(ai): add CASTS and Light Memory components#748
Open
Appointat wants to merge 4 commits intoapache:masterfrom
Open
feat(ai): add CASTS and Light Memory components#748Appointat wants to merge 4 commits intoapache:masterfrom
Appointat wants to merge 4 commits intoapache:masterfrom
Conversation
- Introduced `CastsRestClient` for handling CASTS decision requests. - Added `CastsVector` class for CASTS traversal instructions. - Updated `VectorType` enum to include `CastsVector`. - Created `LightMemConfig` for configuration management of Light Memory. - Implemented `LightMemRestClient` for writing and recalling memory. - Developed `MemoryClient` to facilitate memory operations. - Added request and response classes for memory operations: `MemoryWriteRequest`, `MemoryWriteResponse`, `MemoryRecallRequest`, and `MemoryRecallResponse`. - Introduced `AiEnvelope`, `AiError`, `AiHttpClient`, `AiResponse`, `AiScope`, and `AiTrace` for protocol handling.
Leomrlin
reviewed
Mar 3, 2026
| @@ -0,0 +1,161 @@ | |||
| #!/usr/bin/env bash | |||
Contributor
There was a problem hiding this comment.
The script also needs to include the Apache License header.
| @@ -0,0 +1,157 @@ | |||
| #!/usr/bin/env bash | |||
| set -euo pipefail | |||
Contributor
There was a problem hiding this comment.
Ditto, The script also needs to include the Apache License header.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
CastsRestClientfor handling CASTS decision requests.CastsVectorclass for CASTS traversal instructions.VectorTypeenum to includeCastsVector.LightMemConfigfor configuration management of Light Memory.LightMemRestClientfor writing and recalling memory.MemoryClientto facilitate memory operations.MemoryWriteRequest,MemoryWriteResponse,MemoryRecallRequest, andMemoryRecallResponse.AiEnvelope,AiError,AiHttpClient,AiResponse,AiScope, andAiTracefor protocol handling.What changes were proposed in this pull request?
How was this PR tested?