mirror of
https://github.com/hwchase17/langchain
synced 2024-11-06 03:20:49 +00:00
6e57306a13
# Changes This PR adds [Clarifai](https://www.clarifai.com/) integration to Langchain. Clarifai is an end-to-end AI Platform. Clarifai offers user the ability to use many types of LLM (OpenAI, cohere, ect and other open source models). As well, a clarifai app can be treated as a vector database to upload and retrieve data. The integrations includes: - Clarifai LLM integration: Clarifai supports many types of language model that users can utilize for their application - Clarifai VectorDB: A Clarifai application can hold data and embeddings. You can run semantic search with the embeddings #### Before submitting - [x] Added integration test for LLM - [x] Added integration test for VectorDB - [x] Added notebook for LLM - [x] Added notebook for VectorDB Co-authored-by: Dev 2049 <dev.dev2049@gmail.com>
30 lines
1.0 KiB
Python
30 lines
1.0 KiB
Python
"""Test Clarifai API wrapper.
|
|
In order to run this test, you need to have an account on Clarifai.
|
|
You can sign up for free at https://clarifai.com/signup.
|
|
pip install clarifai
|
|
|
|
You'll need to set env variable CLARIFAI_PAT_KEY to your personal access token key.
|
|
"""
|
|
|
|
from langchain.llms.clarifai import Clarifai
|
|
|
|
|
|
def test_clarifai_call() -> None:
|
|
"""Test valid call to clarifai."""
|
|
llm = Clarifai(
|
|
user_id="google-research",
|
|
app_id="summarization",
|
|
model_id="text-summarization-english-pegasus",
|
|
)
|
|
output = llm(
|
|
"A chain is a serial assembly of connected pieces, called links, \
|
|
typically made of metal, with an overall character similar to that\
|
|
of a rope in that it is flexible and curved in compression but \
|
|
linear, rigid, and load-bearing in tension. A chain may consist\
|
|
of two or more links."
|
|
)
|
|
|
|
assert isinstance(output, str)
|
|
assert llm._llm_type == "clarifai"
|
|
assert llm.model_id == "text-summarization-english-pegasus"
|