Mr Ruben

Results 21 comments of Mr Ruben

In my case I was using a python2 kernel. I don't know if it happens with python3 too. My solution was: **Do not use any print statement in the code**....

I got that working (a interactive window in VScode connected to the same kernel of the notebook) following these instructions https://stackoverflow.com/a/72599604/4752223 kernel of the notebook = a kernel running in...

Totally agree. Throwing data+garbage to the Model is not very smart/economical. I tried to open the discussion [here](https://github.com/jxnl/instructor/discussions/481) regarding that, but it seems like only Issues are attended (or maybe...

Would this work? (no need to change Instructor) ``` try: call_model1() except Exception: try: call_model2() except Exception: call_model3() ``` > Allow n retries on the same model This is already...

I am not sure about all the possible outcomes depending on how you installed it (which you don't explain) but I found a imgur-uploader.py and run it like `# python3...

I found that doing ``` # Clone project git clone https://github.com/itspoma/audio-fingerprint-identifying-python.git # you will need to restore/create the database for first time running the following command make clean reset #...

> Why not call it go2ramdisk? From https://github.com/wor/goanysync `It is a rewrite of "anything-sync-daemon" with go programming language ` > Or sync-persistent-ramdisk, for something so generic that can be configured...

> Instead I would like to be returned what the LLM returned, even if the data has not been validated. https://python.useinstructor.com/#returning-the-original-completion-create_with_completion ``` user, completion = client.chat.completions.create_with_completion( model="gpt-4-turbo-preview", messages=[ {"role": "user",...

I would suggest you try this in the configuration `"xdivs": 6` It allows to use 2/6, 3/6 and 4/6 of screen (just keep pressing the key combination until what you...

If I run a second time ``` !pip install qlogging import qlogging ``` ``` Requirement already satisfied: qlogging in /usr/local/lib/python3.7/dist-packages (1.2.3) Requirement already satisfied: colorama in /usr/local/lib/python3.7/dist-packages (from qlogging) (0.4.4)...