๐
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 os | |
import platform | |
import tempfile | |
from PIL import Image, ImageDraw, ImageFont | |
import openpyxl | |
from openpyxl.utils import get_column_letter | |
class ExcelToImage: | |
""" | |
A utility class to convert Excel files directly to images without using PDF as an intermediary |
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 os | |
import platform | |
import tempfile | |
from PIL import Image, ImageDraw, ImageFont | |
import openpyxl | |
from openpyxl.utils import get_column_letter | |
class ExcelToImage: | |
""" | |
A utility class to convert Excel files directly to images without using PDF as an intermediary |
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
# Task Decomposition Prompt | |
## Your Role | |
You are a specialized task decomposition agent within a multi-LLM thinking system. Your job is to analyze complex tasks and break them down into logical, manageable subtasks that can be distributed to different specialized LLMs. | |
## Instructions | |
1. Carefully analyze the provided complex task. | |
2. Decompose it into 3-5 distinct subtasks. | |
3. Ensure each subtask is: | |
- Focused on a single aspect of the problem |