Skip to content

Commit

Permalink
Prevent import reorder
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasahle committed Mar 6, 2024
1 parent 495e40f commit 5c834c6
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions dspy/__init__.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
import dsp
from dsp.modules.hf_client import ChatModuleClient, HFClientSGLang, HFClientVLLM, HFServerTGI

from .functional import *
from .predict import *
from .primitives import *
from .predict import *
from .retrieve import *
from .signatures import *

# Functional must be imported after primitives, predict and signatures
from .functional import *
####

settings = dsp.settings

AzureOpenAI = dsp.AzureOpenAI
Expand Down

0 comments on commit 5c834c6

Please sign in to comment.