Mark Liffiton
Mark Liffiton
The directory is created correctly. The code is trying to read the `auth_refresh` file, though, and that doesn't exist. I can create it, but then the next line fails on...
It works fine with `force=True`. I got the prompt to get a code from okpy.org, I entered the code, and it says I've successfully logged in. Is there some part...
If anyone runs into the same issue, I've included the following in my students' notebooks as a workaround: ```python import os if not os.path.exists(os.path.join(os.environ.get("HOME"), ".config/ok/auth_refresh")): ok.auth(force=True) else: ok.auth(inline=True) ```
Sure! [okpy_issue_372.zip](https://github.com/okpy/ok-client/files/3592523/okpy_issue_372.zip) That includes a notebook and an .ok file. Executing the submission code in that notebook claims to succeed and gives me an okpy.org URL for the submission, but...
I was just looking at the okpy-client code, and I see there is a new `mode` parameter for the Notebook constructor. If I change the initialization to `ok = Notebook('A7.ok',...
It looks like this might just be an issue with the documentation. I dug into the code, and many methods will take `api_key` and `organization` arguments. For example, for the...
Thanks for the report and the test case! I see you're using repeated literals in your cardinality constraints. I added support for that to the main solver, but I don't...
Feel free to try the change in my pull request. It's a few lines added to `shiftUpperValue()`. If anyone runs into problems with it, please let me know.
Thanks for the questions! That's an interesting application. I'd love to hear if you get some new results there. > i see in the code that "=" is supported in...
I would find this addition beneficial as well. To add a concrete example: I'm using llama.cpp server behind a LiteLLM proxy, and setting `stream: true` causes a response from llama.cpp...