switch to poetry

This commit is contained in:
chrisaddy
2024-07-30 17:04:50 -04:00
parent 7187bb593a
commit 6310a7f60f
7 changed files with 1592 additions and 16 deletions

0
tests/__init__.py Normal file
View File

View File

@@ -1,11 +1,11 @@
"""
Pytest for the LM function (mocks the openai api so we can pretend to generate completions through te typoical approach taken in the decorators (and adapters file.))
Pytest for the LM function (mocks the openai api so we can pretend to generate completions through the typical approach taken in the decorators (and adapters file.))
"""
from ell.decorators.lm import lm
import pytest
from unittest.mock import patch, MagicMock
from ell.decorators import DEFAULT_SYSTEM_PROMPT
from ell.util.lm import DEFAULT_SYSTEM_PROMPT
from ell.types import Message, LMPParams