streamlit # 🌟 - Build interactive apps. Ex: st.write("Hello, AI!") → Displays text | Web magic unleashed! ✨ # 📈 - Visualize data easily. Ex: st.line_chart({"data": [1, 2, 3]}) → Plots line | Graphs in a snap! 📊 # 🖼️ - Show Mermaid graphs. Ex: st.mermaid("graph TD A-->B") → Renders diagram | Visualize like a pro! 🧩 transformers # 🤖 - Generate text fast. Ex: pipeline("text-generation")("Tell me a story") → Story string | Tales on demand! 📖 # 😊 - Analyze sentiment. Ex: pipeline("sentiment-analysis")("I love AI") → Positive dict | Feelings decoded! 💖 # 🧠 - Load smart models. Ex: AutoModel.from_pretrained("bert-base-uncased") → BERT model | NLP power boost! ⚡ torch # 🔥 - Crunch numbers. Ex: torch.tensor([1.0, 2.0]) → Tensor([1., 2.]) | Math made fiery! 🔢 # 🛠️ - Build neural nets. Ex: torch.nn.Linear(10, 5) → Linear layer | Deep learning bricks! 🏗️ # 🚀 - Train models. Ex: torch.optim.Adam(model.parameters(), lr=0.001) → Optimizer | Learning takes flight! 🏃 pillow # 📸 - Open images. Ex: Image.open("photo.jpg") → PIL Image | Picture perfect start! 🖼️ # ✂️ - Resize visuals. Ex: Image.open("photo.jpg").resize((100, 100)) → Smaller image | Crop it quick! 📏 # 🎨 - Edit pixels. Ex: ImageDraw.Draw(img).text((10, 10), "Hi") → Annotated image | Artistry in code! 🖌️ pandas # 📊 - Load data frames. Ex: pd.read_csv("data.csv") → DataFrame | Data wrangling begins! 🐼 # 🔍 - Filter rows. Ex: df[df["age"] > 30] → Filtered DataFrame | Search with ease! 🕵️ # 📉 - Plot insights. Ex: df.plot(kind="bar", x="name") → Bar chart | Visualize trends! 📈