Skip to content

Commit

Permalink
Fix: fix partners name typo in tests (langchain-ai#15066)
Browse files Browse the repository at this point in the history
<!-- Thank you for contributing to LangChain!

Please title your PR "<package>: <description>", where <package> is
whichever of langchain, community, core, experimental, etc. is being
modified.

Replace this entire comment with:
  - **Description:** a description of the change, 
  - **Issue:** the issue # it fixes if applicable,
  - **Dependencies:** any dependencies required for this change,
- **Twitter handle:** we announce bigger features on Twitter. If your PR
gets announced, and you'd like a mention, we'll gladly shout you out!

Please make sure your PR is passing linting and testing before
submitting. Run `make format`, `make lint` and `make test` from the root
of the package you've modified to check this locally.

See contribution guidelines for more information on how to write/run
tests, lint, etc: https://python.langchain.com/docs/contributing/

If you're adding a new integration, please include:
1. a test for the integration, preferably unit tests that do not rely on
network access,
2. an example notebook showing its use. It lives in
`docs/docs/integrations` directory.

If no one reviews your PR within a few days, please @-mention one of
@baskaryan, @eyurtsev, @hwchase17.
 -->

---------

Co-authored-by: Harrison Chase <hw.chase.17@gmail.com>
Co-authored-by: Ran <rccalman@gmail.com>
  • Loading branch information
3 people authored Dec 22, 2023
1 parent 2e15993 commit 86d27fd
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@


def test_stream() -> None:
"""Test streaming tokens from OpenAI."""
"""Test streaming tokens from Anthropic."""
llm = ChatAnthropicMessages(model_name="claude-instant-1.2")

for token in llm.stream("I'm Pickle Rick"):
assert isinstance(token.content, str)


async def test_astream() -> None:
"""Test streaming tokens from OpenAI."""
"""Test streaming tokens from Anthropic."""
llm = ChatAnthropicMessages(model_name="claude-instant-1.2")

async for token in llm.astream("I'm Pickle Rick"):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@


def test_chat_google_genai_stream() -> None:
"""Test streaming tokens from OpenAI."""
"""Test streaming tokens from Gemini."""
llm = ChatGoogleGenerativeAI(model=_MODEL)

for token in llm.stream("This is a test. Say 'foo'"):
assert isinstance(token.content, str)


async def test_chat_google_genai_astream() -> None:
"""Test streaming tokens from OpenAI."""
"""Test streaming tokens from Gemini."""
llm = ChatGoogleGenerativeAI(model=_MODEL)

async for token in llm.astream("This is a test. Say 'foo'"):
Expand Down
4 changes: 2 additions & 2 deletions libs/partners/nvidia-trt/tests/integration_tests/test_llms.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

@pytest.mark.skip(reason="Need a working Triton server")
def test_stream() -> None:
"""Test streaming tokens from OpenAI."""
"""Test streaming tokens from NVIDIA TRT."""
llm = TritonTensorRTLLM(model_name=_MODEL_NAME)

for token in llm.stream("I'm Pickle Rick"):
Expand All @@ -17,7 +17,7 @@ def test_stream() -> None:

@pytest.mark.skip(reason="Need a working Triton server")
async def test_astream() -> None:
"""Test streaming tokens from OpenAI."""
"""Test streaming tokens from NVIDIA TRT."""
llm = TritonTensorRTLLM(model_name=_MODEL_NAME)

async for token in llm.astream("I'm Pickle Rick"):
Expand Down

0 comments on commit 86d27fd

Please sign in to comment.