fix: update import statement in astradb_cql.py to silence warning (#8457)

fix: update import statement for pydantic in astradb_cql.py
This commit is contained in:
Gabriel Luiz Freitas Almeida 2025-06-10 15:09:56 -03:00 committed by GitHub
commit 79c37c8f50
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -5,8 +5,8 @@ from http import HTTPStatus
from typing import Any
import requests
from langchain.pydantic_v1 import BaseModel, Field, create_model
from langchain_core.tools import StructuredTool, Tool
from pydantic import BaseModel, Field, create_model
from langflow.base.langchain_utilities.model import LCToolComponent
from langflow.io import DictInput, IntInput, SecretStrInput, StrInput, TableInput