File size: 327 Bytes
92aaa61
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
from dataclasses import dataclass

@dataclass
class Prompt0:
    user_prompt: str = "Provide the alt-text for the image in the most concise way."

@dataclass
class Prompt1:
    user_prompt: str = "Provide the alt-text for the image in the most prudent way, mentioning all the objects present in the image."


prompt = Prompt1()