diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 0a08df16..688e1bc2 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -34,8 +34,11 @@ lm = LM(model="ollama/llama3.2") Here's an example of creating an `LM` object to use `Meta-Llama-3-8B-Instruct` on vLLM ``` from lotus.models import LM -lm = LM(model='hosted_vllm/meta-llama/Meta-Llama-3-8B-Instruct', api_base='http://localhost:8000/v1') +lm = LM(model='hosted_vllm/meta-llama/Meta-Llama-3-8B-Instruct', + api_base='http://localhost:8000/v1', + max_ctx_len=8000, + max_tokens=1000) ``` ## Helpful Examples -For helpful examples of LOTUS operators, please refer to the `examples` folder, as well as the documentation. \ No newline at end of file +For helpful examples of LOTUS operators, please refer to the `examples` folder, as well as the documentation.