This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from langchain_openai import ChatOpenAI | |
from langchain_core.prompts import ChatPromptTemplate | |
from langchain_core.pydantic_v1 import BaseModel, Field | |
import json,urllib.request,websockets,asyncio | |
from typing import TypedDict, List | |
import textwrap,html | |
from bs4 import BeautifulSoup, Tag, NavigableString,Comment | |
import os | |
from dotenv import load_dotenv,find_dotenv | |
load_dotenv(find_dotenv()) |
OlderNewer