Let an ontology field opt out, and fix the README - #348
Merged
Conversation
The Go DSL excludes a field with `zep:"-"`, so a model reused for other purposes can leave one out. Python raised on any field without a property marker with no way to opt out, so the same model could not be expressed here without splitting it. An `Excluded` marker, following the existing `Identity` pattern, skips the field before the marker check. The README still described capabilities this package does not ship: document collections, the langchain chat-history and vector-store classes, a community install of a differently named package, and an examples directory removed from the repository.
zep-sdk-release-bot Bot
added a commit
that referenced
this pull request
Aug 26, 2026
* [fern-generated] Update SDK Generated by Fern CLI Version: unknown Generators: - fernapi/fern-python-sdk: 4.64.1 * [fern-replay] Applied customizations Patches applied (1): - patch-082f322d: Let an ontology field opt out, and fix the README (#348) * chore: bump SDK version to 4.0.0-alpha.5 --------- Co-authored-by: fern-api[bot] <115122769+fern-api[bot]@users.noreply.github.com> Co-authored-by: zep-sdk-release-bot[bot] <zep-sdk-release-bot[bot]@users.noreply.github.com>
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.
Rationale
The Go DSL can exclude a field from an ontology with
zep:"-"; Python raised on any field without a property marker and offered no way to opt out, so a model that ports cleanly in Go could not be expressed here without splitting it. The README also describes capabilities this package does not ship.Changes
Excludedmarker, following the existingIdentitypattern, checked before the property-marker check in_properties(). An excluded field is omitted from the built payload and needs no description.examples/directory that was removed from the repository. The generated half from## Installationonward is untouched.Impact and risks
None material.
Excludedis additive; existing models behave exactly as before.Invariants
None.
Required configs
None.