SceneXplain
SceneXplain is an ImageCaptioning service accessible through the SceneXplain Tool.
To use this tool, you'll need to make an account and fetch your API Token from the website. Then you can instantiate the tool.
import os
os.environ["SCENEX_API_KEY"] = "<YOUR_API_KEY>"
from langchain.agents import load_tools
tools = load_tools(["sceneXplain"])
API Reference:load_tools
Or directly instantiate the tool.
from langchain_community.tools import SceneXplainTool
tool = SceneXplainTool()
API Reference:SceneXplainTool