Rich Dougherty
Rich Dougherty
The standard Play template bundles the `jdbc` dependency. Users will usually need to remove this dependency when they add the `play-slick` dependency. Mention this in the docs. Could also mention...
On this published page https://www.playframework.com/documentation/2.6.x/ScalaJsonCombinators the links to `Reads` and `Writes` are: - https://www.playframework.com/documentation/2.6.x/api/libs/json/Reads.html - https://www.playframework.com/documentation/2.6.x/api/libs/json/Writes.html However they need to be changed to: - https://www.playframework.com/documentation/2.6.x/api/scala/play/api/libs/json/Reads.html - https://www.playframework.com/documentation/2.6.x/api/scala/play/api/libs/json/Writes.html We need to...
Hi, I noticed what looks like some build files in the fest-util JAR. Not sure if this is intentional or not, but I thought I'd let you know! ``` $...
The specification has changed location.
Play 2.6 strips the `charset` parameter for some `Content-Type` headers if the content type has a known charset. E.g. for `application/json` the charset is known to always be UTF-8 so...
It would help with writing Java tests to have some [matchers](https://github.com/junit-team/junit/wiki/Matchers-and-assertthat) for Java 8 types. I don't think they're in JUnit or Hamcrest [yet](https://github.com/hamcrest/JavaHamcrest/issues/82). E.g. ``` java assertThat(completionStage, futureValue(is(3))); assertThat(future,...
This is a PR to add support for loading and changing LoRA adapters at runtime as introduced into llama.cpp in https://github.com/ggerganov/llama.cpp/pull/8332 by @ngxson. Adding this support should allow things like...