Daniel Hilst

Results 12 issues of Daniel Hilst

There is a big note documentation quoting that `Content-Type` should be `multipart/form-data' otherwise we get a big 400 error, is there any way to accept `application/json`? There are a lot...

enhancement
help wanted

`/etc/profile.d/lmod.sh` has a `module try-add ohpc`. When it executes this line it hangs, If I hit Ctrl+c I got this stack trace, any ideas? ^C/bin/lua: interrupted! stack traceback: [C]: ?...

stale-issue

I was following the `CentOS7.5 Base OS xCAT/SLURM Edition for Linux* (x86 64)`. At _3.9.2 Add OpenHPC Components_ the document instruct for installation of some packages on the image, but...

stale-issue

Hello, This MR creates a Yojson_json5 library on top of Yojson adding support for JSON5, it's based on the work of @gorm-issuu and @gertsonderby It's regarding https://github.com/ocaml-community/yojson/issues/106 I have a...

Hello I have this code ```python import dspy backend_llm = dspy.OllamaLocal( model='llama3', # The model we're going to use. ) dspy.configure(lm=backend_llm) class MySig(dspy.Signature): """ You are a binary classifier You'll...

Hi, I had to write a custom decision at my work and found that the documentation is outdated. I could achieve my task after a lot of effort to understand...

### Bug report I receive this error when I try to render an arbitrary graph: `Error displaying widget: model not found` **Bug summary** **Code for reproduction** I followed the networkx...

The link http://demo.getqor.com/admin is redirecting to the doc

I tried to parse the contract : https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol But I got this error ``` Fatal error: exception Solidity_exceptions.SyntaxError("Parse error", _) ``` I'm not sure if I'm doing something wrong, I'm...

I have this example code: ```python from typing import Protocol, final class Proto(Protocol): def foo(self, x: int) -> str: ... @final class Impl(Proto): def foo(self, x: int) -> int: ......