Sam Cohan

Results 11 comments of Sam Cohan

@ajaykarpur The problem is that the ScriptProcessor only takes a single file as argument not a source_dir, so you cannot include a directory with your python source file, so the...

As a workaround, we ended up using the `SklearnProcessor` which actually takes a python script. The python script gets access to a packaged version of our code which gets downloaded...

Hi folks, what is the latest on this? Is there a timeline for merging this?

Unfortunately the recommended solution does not work. I have ``` ➜ dl-team git:(streamlit_app) ✗ pip show jupyterlab Name: jupyterlab Version: 3.0.9 Summary: The JupyterLab server extension. Home-page: http://jupyter.org Author: Jupyter...

I see your point. However, there is a strong incentive to use OpenAI's chat model `gpt-3.5-turbo` instead of the `text-davinci-003` due to the 10x cost reduction in the chat variant....

Generally, it seems like missed opportunity to limit the chat functionality so much. I also noticed that the `gen` inside `assistant` is completely neutered (e.g. does not even support `pattern`)....

I was thinking, if there is a good way to override the `gen`, then I can easily modify it to do what I need (i.e. make the chat model behave...

Thank you very much for your patience and the example. Could you possibly explain how I can adapt the json example to the chat model? Here is my attempt: ```python...

To be honest, I think the best approach is what I mentioned before, to write a wrapper to treat the chat model interface as if it is a simple completion...

Thanks for your input @aabdullah-getguru . I was suggesting 1) but yeah I agree it would be useful for the project maintainers to give thumbs up on whether this is...