
LANGCHAIN — Hackathon Kickoff for Ted AI
The computer was born to solve problems that did not exist before. — Bill Gates
Are you ready for the TED AI Hackathon? We’re thrilled to partner with TED for this event and can’t wait to see the innovative projects that will emerge. If you’re new to building with LLMs, we’ve got you covered with resources to help you get started and ideas for apps we’d love to see. Plus, we’ll be sponsoring a prize for the best LLM application. Let’s dive in!
Getting Started with LangChain
# Install LangChain
!pip install langchain# Quickstart guide
from langchain import LangChain
lc = LangChain()
lc.train_model(data)
lc.generate_output()# Use-case specific walkthroughs
from langchain.use_cases import question_answering, chatbots, web_scraping
response = question_answering(input_question)
response = chatbots(input_message)
response = web_scraping(url)LangChain Prompt Hub
# Submit, discover, and remix prompts
from langchain.hub import prompt_hub
prompt_hub.submit_prompt(prompt)
prompt_hub.discover_prompt()
prompt_hub.remix_prompt(original_prompt)Projects we’d love to see
- Applications that use open source models
- Innovative retrieval tactics
- Practical agents
- Adventurous agents
- Apps that connect unique data sources/formats
Get ready to showcase your project by tagging us on Twitter @langchainai or sending us a note at [email protected]. We’re eager to witness your creations!
That’s it for now. Happy hacking!
