GoodMem
ReferenceClient SDKsPython SDKConfiguration

ChunkingConfiguration Configuration

ChunkingConfiguration Configuration documentation for Python SDK

Configuration for text chunking strategy used when processing content

Properties

NameTypeDescriptionNotes
var_noneobjectNo chunking strategy - preserves original content as a single unit[optional]
recursiveRecursiveChunkingConfiguration[optional]
sentenceSentenceChunkingConfiguration[optional]

Example

from goodmem_client.models.chunking_configuration import ChunkingConfiguration

# TODO update the JSON string below
json = "{}"
# create an instance of ChunkingConfiguration from a JSON string
chunking_configuration_instance = ChunkingConfiguration.from_json(json)
# print the JSON string representation of the object
print(ChunkingConfiguration.to_json())

# convert the object into a dict
chunking_configuration_dict = chunking_configuration_instance.to_dict()
# create an instance of ChunkingConfiguration from a dict
chunking_configuration_from_dict = ChunkingConfiguration.from_dict(chunking_configuration_dict)

↑ Back to Python SDK ↑ Back to Python SDK ↑ Back to Python SDK

On this page