Skip to content

Commit

Permalink
renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
MadcowD committed Aug 27, 2024
1 parent ae50426 commit 6f70340
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion examples/client_example.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import os
import openai

import ell.lmp.text
import ell.lmp.simple


ell.config.verbose = True
Expand Down
4 changes: 2 additions & 2 deletions src/ell/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from ell.lmp.text import simple
from ell.lmp.simple import simple
from ell.lmp.tool import tool
from ell.lmp.multimodal import complex
from ell.lmp.complex import complex
from ell.types.message import Message, ContentBlock, system, user, assistant
from ell.__version__ import __version__

Expand Down
4 changes: 2 additions & 2 deletions src/ell/lmp/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
from ell.lmp.text import simple
from ell.lmp.multimodal import complex
from ell.lmp.simple import simple
from ell.lmp.complex import complex
2 changes: 1 addition & 1 deletion src/ell/lmp/simple.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from typing import Optional

import openai
from ell.lmp.multimodal import complex
from ell.lmp.complex import complex


@wraps(complex)
Expand Down
2 changes: 1 addition & 1 deletion src/ell/util/differ.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

from ell.lmp.text import simple
from ell.lmp.simple import simple
import difflib

# Todo: update this for single change stuff so that it doesn't summarize small chage but says it specifically.
Expand Down

0 comments on commit 6f70340

Please sign in to comment.