Janos Tolgyesi
Janos Tolgyesi
It would be nice if the tool would not fail at least when the PBXAggregateTarget sections are exactly the same
First of all may I suggest to put some content on details VC? Currently it's completely empty.
Well, I came up a solution that does not completely satisfy me but "it works". First of all I think we need to separate the concept of ViewModel's `Output` into...
Hello @sergdort, any updates on this?
Thank you @sergdort, surely we'll have a look at it!
In the case of re-identification or embedding training, self-supervised learning usually means that you train binary regression model that tries to decide if the inputs on their two branches are...
I use a very simple implementation: ```python from typing import Callable, Dict, Iterator def dynamodb_paginator(action: Callable, kwargs: Dict) -> Iterator[Dict]: while True: response = action(**kwargs) for item in response["Items"]: yield...
Fantastic! I am looking forward for the pod! I have another usability suggestion but I'll open a separate issue for it.
It is absolutely useful: currently I am integrating it into my behavioral test suite targeting to test a custom file-based cache mechanism. With your class I can easily verify if...
If you face this error when creating your agent with `create_react_agent`, note that the chain in this function formats the agent_scratchpad as a string. If you construct your prompt manually,...