From d73d7795caa0b28c2c74b2e72af59d127e392b0d Mon Sep 17 00:00:00 2001 From: Pinyi Lu <47612040+Hokiee@users.noreply.github.com> Date: Thu, 29 Jan 2026 09:57:38 -0500 Subject: [PATCH] Update README.md google/gemma7b is not a valid model identifier listed on 'https://huggingface.co/models'. Changed it to google/gemma-7b. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a4ff27d..9dcf59d 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ Getting started with Cactus is as simple as: ```python from cactus.agent import Cactus -Model = Cactus(model_name="google/gemma7b", model_type="vllm") +Model = Cactus(model_name="google/gemma-7b", model_type="vllm") Model.run("What is the molecular weight of the smiles: OCC1OC(O)C(C(C1O)O)O") ```