--- license: mit --- ## Quick start ```python from ctransformers import AutoModelForCausalLM model = AutoModelForCausalLM.from_pretrained("npvinHnivqn/GGUF-openchat", model_file="openchat.gguf", model_type="llama", gpu_layers=0, context_length=768) model('''AI will ''', temperature=0.1) ```