Skip to content

Commit

Permalink
LLM
Browse files Browse the repository at this point in the history
  • Loading branch information
efriis committed Feb 10, 2024
1 parent 346c03b commit ec1995e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/docs/integrations/llms/perplexity.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"source": [
"from langchain.chains import LLMChain\n",
"from langchain.prompts import PromptTemplate\n",
"from langchain_community.llms.perplexity import Perplexity"
"from langchain_community.llms.perplexity import PerplexityLLM"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion libs/community/langchain_community/llms/perplexity.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class PerplexityLLM(BaseChatModel):
Example:
.. code-block:: python
from langchain_community.llms import Perplexity
from langchain_community.llms import PerplexityLLM
llm = PerplexityLLM(model="pplx-70b-online", temperature=0.7)
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

from langchain_core.callbacks import CallbackManager

from langchain_community.llms.perplexity import Perplexity
from langchain_community.llms.perplexity import PerplexityLLM
from tests.unit_tests.callbacks.fake_callback_handler import FakeCallbackHandler


Expand Down

0 comments on commit ec1995e

Please sign in to comment.