diff --git a/docs/.buildinfo b/docs/.buildinfo index 0208200b..009e7ad4 100644 --- a/docs/.buildinfo +++ b/docs/.buildinfo @@ -1,4 +1,4 @@ # Sphinx build info version 1 # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. -config: 4ff607b2d55930797f1169943f8bc6fe +config: 6295a05aa3ec70c95f888807ce0d283a tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/docs/_modules/dialogy/base/entity_extractor.html b/docs/_modules/dialogy/base/entity_extractor.html index d0f22ec0..dc534dbd 100644 --- a/docs/_modules/dialogy/base/entity_extractor.html +++ b/docs/_modules/dialogy/base/entity_extractor.html @@ -309,7 +309,8 @@

Source code for dialogy.base.entity_extractor

) return self.apply_filters(aggregate_entities)
- def _make_transform_values(self, transcript: Any) -> List[str]: +
[docs] @staticmethod + def make_transform_values(transcript: Any) -> List[str]: """ Make transcripts from a string/json-string. @@ -322,7 +323,7 @@

Source code for dialogy.base.entity_extractor

transcript = json.loads(transcript) return normalize(transcript) except (json.JSONDecodeError, TypeError): - return normalize(transcript)
+ return normalize(transcript)