Mahesh Sankhala
Mahesh Sankhala
I use this to fetch pull request by id to local branch. `git fetch origin pull//head:` There are lots of git tips on this repo https://github.com/git-tips/tips There is npm package...
I have created a Drupal module to support this library in drupal https://www.drupal.org/project/vanilla_selectbox
I have ported this project to .Net Core Console Project https://github.com/msankhala/asge Currently this repo includes everything including linux and osx-build. I haven't tested the final build yet. Just the binary...
As I mentioned in my original comment the Linux build is in the https://github.com/msankhala/asge repo. You can copy the https://github.com/msankhala/asge/tree/master/bin/Debug/netcoreapp3.1/linux-x64 folder and run the `asge` binary from that folder.
This issue is with php 8. Switching to PHP7.4 resolves this issue.
If you are on Macbook, you have to change `device_map="mps"` in order to make it work. ```python llm_lingua = PromptCompressor(device_map="mps") ``` Source: https://stackoverflow.com/a/60619616/902102
@jacksoncassimiro I was facing the same issue. You need to add `individually: true` at the top level `package:` key in serverless.yaml file. The steps I followed are: ``` service: my-service-${self:custom.version}...