From bb88c795b7df62b0366c9ac8c195d86eb0bb7e2c Mon Sep 17 00:00:00 2001 From: Quin Hoxie Date: Wed, 1 May 2024 13:28:38 -0700 Subject: [PATCH] feat(dspy): add dspy.Claude helper --- dspy/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dspy/__init__.py b/dspy/__init__.py index 62034403e0..e07989ce03 100644 --- a/dspy/__init__.py +++ b/dspy/__init__.py @@ -5,10 +5,10 @@ from .primitives import * from .retrieve import * from .signatures import * +from .utils.logging import logger, set_log_output # Functional must be imported after primitives, predict and signatures from .functional import * # isort: skip -from .utils.logging import logger, set_log_output settings = dsp.settings @@ -25,6 +25,7 @@ Google = dsp.Google GoogleVertexAI = dsp.GoogleVertexAI GROQ = dsp.GroqLM +Claude = dsp.Claude HFClientTGI = dsp.HFClientTGI HFClientVLLM = HFClientVLLM