griptape
griptape copied to clipboard
Normalize `Callable` naming convention
Multiple Griptape classes have Callable
properties. We use the following naming convention for them:
-
_func
. For exampleSnowflakeSqlDriver.connection_func
. -
_fn
. For example,LocalVectorStoreDriver.relatedness_fn
. - Method-like. For example,
BasePromptDriver.prompt_stack_to_string
.
The team decided to normalize all callable properties to follow the _fn
naming convention.