Sentences#
Module for handling document sentences.
This module provides the Sentence class, which represents a structured unit of text within a document paragraph. Sentences are the fundamental building blocks of text analysis, containing the raw text content of individual statements.
The module supports validation to ensure data integrity and integrates with the paragraph structure to maintain the hierarchical organization of document content.
- class contextgem.public.sentences.Sentence(**data)[source]#
Bases:
_ParasAndSentsBase
Represents a sentence within a document paragraph.
Sentences are immutable text units that serve as the fundamental building blocks for document analysis. The raw text content is preserved and cannot be modified after initialization to maintain data integrity.
- Variables:
raw_text – The complete text content of the sentence. This value is frozen after initialization.
- Parameters:
custom_data (dict)
additional_context (Annotated[str, Strict(strict=True), StringConstraints(strip_whitespace=True, to_upper=None, to_lower=None, strict=None, min_length=1, max_length=None, pattern=None)] | None)
raw_text (NonEmptyStr)
- Note:
Normally, you do not need to construct sentences manually, as they are populated automatically from document’s
raw_text
orparagraphs
attributes. Only use this constructor for advanced use cases, such as when you have a custom paragraph/sentence segmentation tool.- Example:
- Sentence definition#
from contextgem import Sentence # Create a sentence with raw text content sentence = Sentence(raw_text="This is a simple sentence.") # Sentences are immutable - their content cannot be changed after creation try: sentence.raw_text = "Attempting to modify the sentence." except ValueError as e: print(f"Error when trying to modify sentence: {e}")
Create a new model by parsing and validating input data from keyword arguments.
Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.
self is explicitly positional-only to allow self as a field name.
- raw_text: NonEmptyStr#
- clone()#
Creates and returns a deep copy of the current instance.
- Return type:
typing.Self
- Returns:
A deep copy of the current instance.
- classmethod from_dict(obj_dict)#
Reconstructs an instance of the class from a dictionary representation.
This method deserializes a dictionary containing the object’s attributes and values into a new instance of the class. It handles complex nested structures like aspects, concepts, and extracted items, properly reconstructing each component.
- classmethod from_disk(file_path)#
Loads an instance of the class from a JSON file stored on disk.
This method reads the JSON content from the specified file path and deserializes it into an instance of the class using the from_json method.
- Parameters:
file_path (str) – Path to the JSON file to load (must end with ‘.json’).
- Returns:
An instance of the class populated with the data from the file.
- Return type:
Self
- Raises:
ValueError – If the file path doesn’t end with ‘.json’.
OSError – If there’s an error reading the file.
RuntimeError – If deserialization fails.
- classmethod from_json(json_string)#
Creates an instance of the class from a JSON string representation.
This method deserializes the provided JSON string into a dictionary and uses the from_dict method to construct the class instance. It validates that the class name in the serialized data matches the current class.
- to_dict()#
Transforms the current object into a dictionary representation.
Converts the object to a dictionary that includes: - All public attributes - Special handling for specific public and private attributes
When an LLM or LLM group is serialized, its API credentials and usage/cost stats are removed.
- to_disk(file_path)#
Saves the serialized instance to a JSON file at the specified path.
This method converts the instance to a dictionary representation using to_dict(), then writes it to disk as a formatted JSON file with UTF-8 encoding.
- Parameters:
file_path (str) – Path where the JSON file should be saved (must end with ‘.json’).
- Return type:
- Returns:
None
- Raises:
ValueError – If the file path doesn’t end with ‘.json’.
IOError – If there’s an error during the file writing process.
- to_json()#
Converts the object to its JSON string representation.
Serializes the object into a JSON-formatted string using the dictionary representation provided by the to_dict() method.
- Returns:
A JSON string representation of the object.
- Return type:
- additional_context: Optional[NonEmptyStr]#
- custom_data: dict#