Andreas Rozek
Andreas Rozek
Well, as mentioned somewhere else: I really like the idea of * having an xTalk language that manipulates the DOM (and has syntactic sugar for that) * with direct JavaScript...
Note: in order to complete my TypeScript port I made `escape` optional (according to its usage, it _is_)
I've just proposed a sketch of a possible implementation of a `v-if` directive as a [separate issue](https://github.com/Freak613/domc/issues/14) which might be of help...
I have the same problem when running LocalAI in a Docker container. The logs contain numerous lines of the form: ``` rpc error: code = Unavailable desc = connection error:...
FYI: the problem occurs both in local Docker builds and the ":latest" image from go-skynet
I am currently trying to compile a previous release in order to see until when LocalAI worked without this problem. Unfortunately, the Docker build command seems to expect the source...
Ok, so I * checked out the latest version from GitHub, * uncommented REBUILD=true and DEBUG=true in .env, * rebuilt using `docker build -t localai .` and * started like...
here is the environment of the running container as reported by Docker (mind the "REBUILD=false") ``` Environment PATH /usr/local/cuda/bin:/go/bin:/usr/local/go/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin GOLANG_VERSION 1.20.6 GOPATH /go BUILD_TYPE EXTERNAL_GRPC_BACKENDS huggingface-embeddings:/build/extra/grpc/huggingface/huggingface.py REBUILD false HEALTHCHECK_ENDPOINT http://localhost:8080/readyz...
Ah, I got s.th.: * since Gun merges new values with existing ones, setting `{}` simply merges nothing - i.e., it leaves the existing object unchanged and, thus, does not...
I'm completely lost... what I did: * `const sharedData = Gun.get('sharingTest').get('sharedData')` * `sharedData.put({ a:'a' })` - works * waiting for completion using a "once" event handler - works * `sharedData.put(null)`...