Spaces:
Runtime error
Runtime error
File size: 284 Bytes
80ed9e0 |
1 2 3 4 5 6 7 8 |
from langchain_community.document_loaders import AsyncChromiumLoader
from langchain_community.document_transformers import BeautifulSoupTransformer
class GetSimilarArticles:
def __init__(self, paper_title_name: str):
self.paper_title_name = paper_title_name
|