Brian Thorne
Brian Thorne
The next version of the blocking schema should be consistent with use of under_scores, camelCase and hyphenated-keys..
Most of the [docs](https://blocklib.readthedocs.io/en/latest/blocking-schema.html#signaturespecs-configurations) don't show the newer/preferred way of defining a blocking schema with explicit column names. The functionality is mentioned in the tutorial, along with a single example:...
Consider creating a python api as an alternative to creating signatures with JSON. At the moment we conflate signature specifications and data together a bit - e.g. `generate_by_char_at(attr_ind: int, dtuple:...
Possible extra strategies and set of names for signature generation: ## Existing strategies - ExactCharMatchSig: The letter at given index. (implemented as `generate_by_char_at`) - ExactMatchSig: the value of the whole...
### Contact Details (optional) [email protected] ### Description. What happened? terraform apply fails after updating providers to `hashicorp/aws v4.35.0` ### Steps to reproduce Upgrade the providers: ``` terraform init -upgrade terraform...
I was trying out the `chat-zero-shot-react-description` agent for [qabot](https://github.com/hardbyte/qabot/blob/dbbd31bb2702d433ed573bb177f1d1272d36f2ae/qabot/agents/data_query_chain.py#L35-L52) but langchain 0.0.108 doesn't correctly use custom 'input_variables` in the prompt template.
With recent changes to hypothesis, the two test_numeric_overlaps tests are now regularly failing. An example failure: ``` @given(thresh_dist=integers(min_value=1), resolution=integers(min_value=1, max_value=512), candidate=integers()) def test_numeric_overlaps_with_integers(thresh_dist, resolution, candidate): comp = NumericComparison(threshold_distance=thresh_dist, resolution=resolution, fractional_precision=0)...
Using poetry I'm seeing poetry fail to resolve (taking hours on Github Actions) when pycognito is in the dependency list. It appears to be because the dependency specifier `boto3>=1.10.49` includes...
A replacement for #2 adding an alternative Chumsky based parser.
Benefits of using [chumsky](https://github.com/zesterer/chumsky) for parsing: - Easier to read and modify than LALRPOP grammar - Much better error reporting and syntax assistance High level plan: - [x] Migrate the...