Diego Velazquez

Results 9 comments of Diego Velazquez

Seems that the generator model still does not work @KupynOrest see #145

This is still an issue. In fact, any command involving rustc (e.g., rustc --version) hangs. rust installed via: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- --default-toolchain 1.61.0...

Any updates? I am still facing this problem, which effectively prevents making many requests in parallel with the retry mechanism. Since the library does not support async requests yet, threads...

It seems that there is a threading lock in the [backrack_handler wrapper ](https://github.com/stanfordnlp/dspy/blob/55510eec1b83fa77f368e191a363c150df8c5b02/dspy/primitives/assertions.py#L189). Is it possible to build our own backtrack_handler and use that? How should we go about this?...

I should say, I am more than happy to make a PR for this, if in fact, threaded execution is not possible with retries, since this is very important for...

I see. But doesn't the settings singleton handle threads correctly? https://github.com/stanfordnlp/dspy/blob/55510eec1b83fa77f368e191a363c150df8c5b02/dsp/utils/settings.py#L51 Couldn't this be leveraged to get the relevant config for the current thread in the backtrack_handler? Let me know...

This seems like a solution. ``` def funcion_that_your_threads_execute() model = your_llm() dspy.configure( lm=model, trace=[], assert_failures=0, suggest_failures=0, backtrack_to=None, predictor_feedbacks={}, backtrack_to_args={}, ) ``` If I replace the lock with `nullcontext` (`dspy.settings.lock =...

Ok I can actually query it, but It shows as disconnected as seen in the image and whenever I try to toggle the tree node on the connection I get:...

@MattiasMTS, I had forgotten about this. I just tried it, and yes, that did it! Thanks! Closing the issue now.