mirror of
https://github.com/hwchase17/langchain
synced 2024-11-11 19:11:02 +00:00
b2a11ce686
### Prem SDK integration in LangChain This PR adds the integration with [PremAI's](https://www.premai.io/) prem-sdk with langchain. User can now access to deployed models (llms/embeddings) and use it with langchain's ecosystem. This PR adds the following: ### This PR adds the following: - [x] Add chat support - [X] Adding embedding support - [X] writing integration tests - [X] writing tests for chat - [X] writing tests for embedding - [X] writing unit tests - [X] writing tests for chat - [X] writing tests for embedding - [X] Adding documentation - [X] writing documentation for chat - [X] writing documentation for embedding - [X] run `make test` - [X] run `make lint`, `make lint_diff` - [X] Final checks (spell check, lint, format and overall testing) --------- Co-authored-by: Anindyadeep Sannigrahi <anindyadeepsannigrahi@Anindyadeeps-MacBook-Pro.local> Co-authored-by: Bagatur <baskaryan@gmail.com> Co-authored-by: Erick Friis <erick@langchain.dev> Co-authored-by: Bagatur <22008038+baskaryan@users.noreply.github.com>
48 lines
1.5 KiB
Python
48 lines
1.5 KiB
Python
"""Test PremChat model"""
|
|
|
|
import pytest
|
|
from langchain_core.messages import AIMessage, HumanMessage, SystemMessage
|
|
from langchain_core.pydantic_v1 import SecretStr
|
|
from pytest import CaptureFixture
|
|
|
|
from langchain_community.chat_models import ChatPremAI
|
|
from langchain_community.chat_models.premai import _messages_to_prompt_dict
|
|
|
|
|
|
@pytest.mark.requires("premai")
|
|
def test_api_key_is_string() -> None:
|
|
llm = ChatPremAI(premai_api_key="secret-api-key", project_id=8)
|
|
assert isinstance(llm.premai_api_key, SecretStr)
|
|
|
|
|
|
@pytest.mark.requires("premai")
|
|
def test_api_key_masked_when_passed_via_constructor(
|
|
capsys: CaptureFixture,
|
|
) -> None:
|
|
llm = ChatPremAI(premai_api_key="secret-api-key", project_id=8)
|
|
print(llm.premai_api_key, end="") # noqa: T201
|
|
captured = capsys.readouterr()
|
|
|
|
assert captured.out == "**********"
|
|
|
|
|
|
def test_messages_to_prompt_dict_with_valid_messages() -> None:
|
|
system_message, result = _messages_to_prompt_dict(
|
|
[
|
|
SystemMessage(content="System Prompt"),
|
|
HumanMessage(content="User message #1"),
|
|
AIMessage(content="AI message #1"),
|
|
HumanMessage(content="User message #2"),
|
|
AIMessage(content="AI message #2"),
|
|
]
|
|
)
|
|
expected = [
|
|
{"role": "user", "content": "User message #1"},
|
|
{"role": "assistant", "content": "AI message #1"},
|
|
{"role": "user", "content": "User message #2"},
|
|
{"role": "assistant", "content": "AI message #2"},
|
|
]
|
|
|
|
assert system_message == "System Prompt"
|
|
assert result == expected
|