Skip to content

Instantly share code, notes, and snippets.

@scottpersinger
scottpersinger / file1.txt
Created September 1, 2024 19:31
Created via API
Line 1
Line 2 is the best line
@scottpersinger
scottpersinger / file1.txt
Created September 1, 2024 19:40
Created via API
Line 1
Line 2 is the best line
@scottpersinger
scottpersinger / images.py
Created September 8, 2024 03:39
Doing image analysis with LangChain agents
# Got inspiration from here: https://github.com/langchain-ai/langchain/discussions/20820
human = HumanMessagePromptTemplate.from_template(
template=[
{"type": "text", "text": "{input}"},
{
"type": "image_url",
"image_url": "{encoded_image_url}",
},
]