def with_context()

in confidence/confidence.py [0:0]


    def with_context(self, context: Dict[str, FieldType]) -> "Confidence":
        new_confidence = Confidence(
            self._client_secret,
            self._region,
            self._apply_on_resolve,
            self._custom_resolve_base_url,
            async_client=self.async_client,
        )
        new_confidence.context = {**self.context, **context}
        return new_confidence