William Jamir Silva

Results 19 comments of William Jamir Silva

I think `polyenv languages` is a good solution for this, I'm just concerned with how we would implement. 1) We can use `@click.group` and have two different commands (therefore losing...

We can also show this list of "available language" when the class 'TioRequest' raises an exception about a wrong language type.

Sorry for the late answer @euresti Thanks for the input, using `@attr.define` indeed works with mypy (without this, mypy fails to recognize the type). Just for disclosure, my actual usage...

So I mainly made this question because I want to move class/method around my project. This project is substantially big, approximately 7,600 files 😬 (actually it's a project with subprojects...

My idea is to be able to document/describe parameters, and this description be visible in the UI. Something like: ```python config_id = Parameter( name='config_id', required=True, description="Some helpful message to be...

> Does this do what you want? It sure does 😄 Currently, my validation occurs after the load step because I'm loading all values recursively and not in batches. But...

I'm excited about this feature too! It would make the Prefect API more consistent, in my view, since flows and tasks will share common functionalities; big win for simplicity. My...

@madkinsz How about using the same approach as the typeshed for `map`? https://github.com/python/typeshed/blob/main/stdlib/builtins.pyi#L1420 Basically, an overload for at least X arguments (for `map` is 5), and any call with more...

How about adding the possibility of installing it as an extension? I mean something like `pip install polyfactory[pandas]` or `pip install polyfactory[extras]`

@csuter How can I run fit_with_hmc with jit_compile activate? Following you example ```python import numpy as np import tensorflow_probability as tfp import tensorflow as tf time_series_with_nans = [-1.0, 1.0, np.nan,...