Louis Martinez

Results 4 comments of Louis Martinez

I think you may have been having a separate issue @Amrouane, @rodriguesfas is saying that the program works for awhile, until it doesn't. If it were a firewall issue, then...

👋 I think the same can be said of lists ``` @dataclass class A: x: int @dataclass class ListOfA: some_list: [A] from_dict(ListOfA, {"some_list": [{"x": 1}]}, config=Config(cast=[list])) # Tried with and...

Nevermind, I see what I was doing wrong now (needed `type_hooks`). This works: ``` @dataclass class A: x: int @dataclass class ListOfA: some_list: List[A] print(from_dict(ListOfA, {"some_list": [{"x": 1}]}, config=Config(type_hooks={List: List})))...

I noticed that all of the jsonl content seems to contain a typo: "Answer only with the letter of the **beset** move." I doubt it has much difference, but might...