RobinLiu

Results 8 comments of RobinLiu

thanks, do you know how to read the SD card in MAX on the fly while 360 recording is on? any API/command to get the 360 file that I can...

@juan131 Thanks for helping. The issue we observed is not "client side" losing the alias, but the "server-side" lost provisioned user credentials. you can see in the values.yaml, provisioning is...

``` persistence: enabled: true mountPath: /data accessModes: - ReadWriteOnce size: '100Gi' annotations: "helm.sh/resource-policy": keep existingClaim: "" ``` in my test, `persistence` makes the diff, if this section is added, this...

tested with default `mountPath: /bitnami/minio/data `, now it's persisted. though I still dont understand why mountPath would lead to this issue.

@juan131, if it has to be static, then helm should not expose it, avoiding wrongly modifying the value

falcon works for me in this way: in .env set `MODEL_TYPE=falcon` in privateGPT.py: ``` +from langchain import HuggingFacePipeline + case "falcon": + llm = HuggingFacePipeline.from_model_id(model_id="tiiuae/falcon-7b-instruct", task="text-generation", model_kwargs={"temperature":0, "max_length":1000,"trust_remote_code": True}) ```

``` PERSIST_DIRECTORY=db MODEL_TYPE=falcon MODEL_PATH=models/ggml-gpt4all-j-v1.3-groovy.bin EMBEDDINGS_MODEL_NAME=all-MiniLM-L6-v2 MODEL_N_CTX=1000 TARGET_SOURCE_CHUNKS=4 ```

MODEL_PATH is not used at all when you use the HuggingFacePipeline