Joseph M.D.
Joseph M.D.
`id` field is not anymore present in the api response
**Describe the bug** Line doesn't display when same point is set twice. **To Reproduce** Just create line with the same point is set twice : ```tsx view.add(
This is the code I run: ```python from ctransformers import AutoModelForCausalLM, AutoTokenizer model = AutoModelForCausalLM.from_pretrained("TheBloke/LLaMa-7B-GGML", hf=True) tokenizer = AutoTokenizer.from_pretrained(model) tokens = tokenizer.encode("Hello world! What's up?") output = model(tokens[None,:]) ``` I...