Utils

class aisploit.utils.SMTPClient(host: str, port: int | None = None, ssl: bool = True, ssl_context: SSLContext | None = None)

Bases: object

login(user: str, password: str)
sendmail(from_addr: str, to_addrs: str | Sequence[str], msg: str)
aisploit.utils.cookies_as_dict(cookies: str) dict

Convert a string of cookies into a dictionary.

aisploit.utils.cosine_distance(emb1: List[float], emb2: List[float]) float

Calculate the cosine distance between two embeddings.

Parameters: emb1 (List[float]): The first embedding. emb2 (List[float]): The second embedding.

Returns: float: The cosine distance between the embeddings.

aisploit.utils.display_base64_image_in_notebook(base64_image)
aisploit.utils.embed_prompt_in_image(image_data: str | bytes, prompt: str, return_base64: bool = False) str | bytes
aisploit.utils.euclidean_distance(emb1: List[float], emb2: List[float]) float

Calculate the Euclidean distance between two embeddings.

Parameters: emb1 (List[float]): The first embedding. emb2 (List[float]): The second embedding.

Returns: float: The Euclidean distance between the embeddings.

aisploit.utils.image_to_data_url(image_data: str | bytes) str
aisploit.utils.is_running_in_jupyter_notebook() bool