Update pydantic import in AnthropicLLM.py

This commit is contained in:
Gabriel Luiz Freitas Almeida 2023-12-04 16:07:19 -03:00
commit ee8efdf6c5

View file

@ -2,7 +2,7 @@ from typing import Optional
from langchain.chat_models.anthropic import ChatAnthropic
from langchain.llms.base import BaseLanguageModel
from pydantic import SecretStr
from pydantic.v1 import SecretStr
from langflow import CustomComponent