This file contains 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
import base64 | |
import os | |
import openpyxl | |
from langchain.chains.transform import TransformChain | |
from langchain_community.chat_models import ChatOpenAI | |
from langchain_core.messages import HumanMessage | |
from openai.types import image_model | |
from pathlib import Path | |
from openpyxl.styles import PatternFill | |
from openpyxl.utils import get_column_letter |
This file contains 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
#!/usr/bin/python3 | |
# -*- coding: utf-8 -*- | |
# Requires pandas and numpy | |
# pip3 install pandas numpy | |
# and the Faker package: | |
# pip3 install Faker | |
from faker import Faker | |
import numpy as np |