Vincent Emonet

Results 151 comments of Vincent Emonet

I am not forced to use docker rootless neither, it's just that it's better than the root option, especially when you use containers a lot for development, try it you'll...

Hi, I am facing the same problem and found it quite confusing the functions parameters cannot be accessed using the given predicate (especially that we might have some optional parameters,...

Hi @ThibaultGerrier I added support for the legacy behavior: https://github.com/vemonet/RocketRML/commit/faf23d3cfb4e8acebc92525bec8977df53c5d878 It's not an array but I am adding also entries with numbers (index) to the `data` object, so most previous...

`const result = [];` is a nice solution, but directly iterating will return each parameter twice out of the box no? You will need to filter on keys that are...

As you want, you can keep compatibility with legacy functions in a first time, push the new use in the documentation, and remove the old function usage later (the change...

Thanks @ThibaultGerrier ! I faced another issue when using constant strings + reference variables in a function parameter, e.g. `this person is: {FirstName} {LastName}` I fixed it and implemented the...

@cthoyt imo the tests done on the public endpoints should be run in a completely different workflow than all other tests that are running fully locally I am not really...

I am not a complete expert on this topic, but as I understand it: - `es2015` would be more stable, and more compatible with older system (e.g. people who don't...

Same for me, I copied the example server from `README.md` ```python from fastmcp import FastMCP # Create an MCP server mcp = FastMCP("Demo") # Add an addition tool @mcp.tool() def...

Hi @spagnoloe-amenitiz Downloading from https://archive.apache.org can be quite slow (but it has the best coverage in term of old versions), I would recommend to take a look there to find...