Craig Hughes

Results 10 comments of Craig Hughes

Why does git-flow put any `--ff-only` or `--no-ff` options on the merge commands? Why can't users just express their preference for "always merge" or "don't merge" through `~/.gitconfig`'s `[merge]` section?...

eg. In my case I kind of want `--no-ff` to master from release, but I kind of want prefer-ff when going back to develop from master (assuming that noone injected...

I think #3782 and #3784 are the bufixes needed to fix llama3 (or any other model that likes generating bad JSON if unconstrained) -- one prevents output of malformed JSON...

I use this: xcdiff.sh: ``` #!/bin/sh # Called by git as # cmd path old-file old-hex old-mode new-file new-hex new-mode THE_PATH=$1 OLD_FILE=$2 OLD_HEX=$3 OLD_MODE=$4 NEW_FILE=$5 NEW_HEX=$6 NEW_MODE=$7 xcdiff -p1 "$(dirname...

the `|| true` is because it looks like xcdiff returns exit codes when the project has diffs? Anyway it causes git diff to abort and not show changes to other...

Might be good by default to adjust the script to use `-d` as well to minimize the spew when doing a `git diff` - removes a thousand "nothing changed" green...

> It might be worth benchmarking whether or not the response quality suffers if you disallow whitespace. > > It's conceivable that models might benefit from whitespace, either because the...

> my reply isn't gonna be very constructive, but does it matter if quality is a tad worse? for any sort of real time production use case, json mode is...

Phi3 is also super sensitive to interior whitespace I guess. These runs were with a JSON grammar that allows ws before the root object, but removes all other whitespace (like...

+1 would be lovely to stop getting so many security warnings on all my repos :)