Justin Bowes

Results 12 comments of Justin Bowes

As far as I can tell, there is no working version. ``` $ pip install jupyterlab

I think you could use this technique for defining an explicit `global` object: http://wiki.duktape.org/HowtoGlobalObjectReference.html ...then use your `register_class` modification, but specify `"global"` for the target when that is what you...

https://github.com/BalazsJako/ImGuiColorTextEdit/blob/master/LICENSE is no impediment

It's a great project. I appreciate your permissive license and your clarity on whether we should expect you to lead the development going forward. Thanks for all your work!

Can confirm that path-reader was a working drop-in replacement for my project.

My unfortunate workaround for this is: `program: guidance.Program = guidance(...) # type: ignore` While it's fluent in a singleton context, extending `Module` via the `__class__` attribute is fundamentally an impolite...

I think you can do this using partials. Imagine a template `main` that looks like this: ```python main = guidance(""" {{#system}} You are a helpful AI. {{/system}} {{#user}} Provide a...

@mathico2 On Azure, for virtual workstation applications you might try GRID driver (which is supported on the T4 instances -- see the exception here https://learn.microsoft.com/en-us/azure/virtual-machines/linux/n-series-driver-setup ). Beyond that, I'd be...

Missing schema build info is Pydantic's requirement, and we don't know how to meet it with the tools provided. To re-rephrase: What is the specific procedure to use `Annotated`, `BeforeValidator`,...