Dima Pulkinen
Dima Pulkinen
This seems pretty easy to add. Do you want to try to write the build rules yourself or wait for someone to pick it up?
I haven't updated the packages in a while, so really hope to see bim in next nenuzhnix release!
I guess, it would be easier to start over at this point. Last release was over a year ago, so there must be many outdated packages, I had a handy...
For source tarballs `.tar.gz`, `.tar.bz2` and `.tar.xz` are currently supported, so for bim correct variables should be the following: ``` Repo: https://github.com/klange/${PKG}/archive/ Filename: v${VER}.tar.gz MD5: 7b3fdd0025726295f0387d7f5c358a34 ``` MD5 here is...
Also in case you don't know, there is a guide on adding new package: https://github.com/tpimh/nenuzhnix/wiki/add-a-package Feel free to comment and extend it.
Hi @scsijon! I've been updating the packages and also tried to build bim. Version 2.6.2 was build without any warnings and here are my versions of the build files, feel...
I briefly skimmed through this PR, and didn't quite understand if conditional fields are supported (or even possible with GBNF). For example, [this schema](https://json-schema.org/understanding-json-schema/reference/conditionals) is used with compulsory `user` field,...
@Lwrless Thanks for your answer. I tried to constrain my model output by adjusting the prompt, but no success: it always tries to populate all fields.
@lebrunel Yes, this is exactly what I am doing currently (even without grammar), but sometimes it takes multiple requests to get a sensible result.
Trying to use it now using the adapted example code: ```rust #![no_std] #![no_main] use bl602_hal::{pwm, prelude::_bl602_hal_gpio_GlbExt}; use embedded_time::duration::Milliseconds; #[riscv_rt::entry] fn main() -> ! { let dp = bl602_hal::pac::Peripherals::take().unwrap(); let clocks...