id stringlengths 14 16 | text stringlengths 36 2.73k | source stringlengths 49 117 |
|---|---|---|
b040625c3b28-1 | Simulated Environment: PettingZoo: an example of how to create a agent-environment interaction loop for multiple agents with PettingZoo (a multi-agent version of Gymnasium).
Generative Agents: This notebook implements a generative agent based on the paper Generative Agents: Interactive Simulacra of Human Behavior by Pa... | https://python.langchain.com/en/latest/use_cases/agent_simulations.html |
bdbcb8d6bc2a-0 | .md
.pdf
Code Understanding
Contents
Conversational Retriever Chain
Code Understanding#
Overview
LangChain is a useful tool designed to parse GitHub code repositories. By leveraging VectorStores, Conversational RetrieverChain, and GPT-4, it can answer questions in the context of an entire GitHub repository or generat... | https://python.langchain.com/en/latest/use_cases/code.html |
bdbcb8d6bc2a-1 | The full tutorial is available below.
Twitter the-algorithm codebase analysis with Deep Lake: A notebook walking through how to parse github source code and run queries conversation.
LangChain codebase analysis with Deep Lake: A notebook walking through how to analyze and do question answering over THIS code base.
prev... | https://python.langchain.com/en/latest/use_cases/code.html |
24de64cae678-0 | .md
.pdf
Summarization
Summarization#
Conceptual Guide
Summarization involves creating a smaller summary of multiple longer documents.
This can be useful for distilling long documents into the core pieces of information.
The recommended way to get started using a summarization chain is:
from langchain.chains.summarize ... | https://python.langchain.com/en/latest/use_cases/summarization.html |
5436a644d60d-0 | .md
.pdf
Querying Tabular Data
Contents
Document Loading
Querying
Chains
Agents
Querying Tabular Data#
Conceptual Guide
Lots of data and information is stored in tabular data, whether it be csvs, excel sheets, or SQL tables.
This page covers all resources available in LangChain for working with data in this format.
D... | https://python.langchain.com/en/latest/use_cases/tabular.html |
7ce7dac94d5d-0 | .ipynb
.pdf
AutoGPT
Contents
Set up tools
Set up memory
Setup model and AutoGPT
Run an example
AutoGPT#
Implementation of https://github.com/Significant-Gravitas/Auto-GPT but with LangChain primitives (LLMs, PromptTemplates, VectorStores, Embeddings, Tools)
Set up tools#
We’ll set up an AutoGPT with a search tool, an... | https://python.langchain.com/en/latest/use_cases/autonomous_agents/autogpt.html |
7ce7dac94d5d-1 | ai_name="Tom",
ai_role="Assistant",
tools=tools,
llm=ChatOpenAI(temperature=0),
memory=vectorstore.as_retriever()
)
# Set verbose to be true
agent.chain.verbose = True
Run an example#
Here we will make it write a weather report for SF
agent.run(["write a weather report for SF today"])
> Entering new LLM... | https://python.langchain.com/en/latest/use_cases/autonomous_agents/autogpt.html |
7ce7dac94d5d-2 | 3. read_file: Read file from disk, args json schema: {"file_path": {"title": "File Path", "description": "name of file", "type": "string"}}
4. finish: use this to signal that you have finished all your objectives, args: "response": "final response to let people know you have finished your objectives"
Resources:
1. Inte... | https://python.langchain.com/en/latest/use_cases/autonomous_agents/autogpt.html |
7ce7dac94d5d-3 | System: This reminds you of these events from your past:
[]
Human: Determine which next command to use, and respond using the format specified above:
> Finished chain.
{
"thoughts": {
"text": "I will start by writing a weather report for San Francisco today. I will use the 'search' command to find the curre... | https://python.langchain.com/en/latest/use_cases/autonomous_agents/autogpt.html |
7ce7dac94d5d-4 | 3. No user assistance
4. Exclusively use the commands listed in double quotes e.g. "command name"
Commands:
1. search: useful for when you need to answer questions about current events. You should ask targeted questions, args json schema: {"query": {"title": "Query", "type": "string"}}
2. write_file: Write file to disk... | https://python.langchain.com/en/latest/use_cases/autonomous_agents/autogpt.html |
7ce7dac94d5d-5 | "text": "thought",
"reasoning": "reasoning",
"plan": "- short bulleted\n- list that conveys\n- long-term plan",
"criticism": "constructive self-criticism",
"speak": "thoughts summary to say to user"
},
"command": {
"name": "command name",
"args": {
"ar... | https://python.langchain.com/en/latest/use_cases/autonomous_agents/autogpt.html |
7ce7dac94d5d-6 | System: This reminds you of these events from your past:
['Assistant Reply: {\n "thoughts": {\n "text": "I will start by writing a weather report for San Francisco today. I will use the \'search\' command to find the current weather conditions.",\n "reasoning": "I need to gather information about the c... | https://python.langchain.com/en/latest/use_cases/autonomous_agents/autogpt.html |
7ce7dac94d5d-7 | "criticism": "I need to make sure that the information I gather is accurate and up-to-date.",
"speak": "I will use the 'search' command to find the current weather conditions in San Francisco."
},
"command": {
"name": "search",
"args": {
"query": "what is the current weather ... | https://python.langchain.com/en/latest/use_cases/autonomous_agents/autogpt.html |
7ce7dac94d5d-8 | "args": {
"file_path": "weather_report.txt",
"text": "Weather Report for San Francisco Today:\n\nThe current weather in San Francisco is sunny with a temperature of 54°F. It is expected to remain sunny throughout the day with a high of 62°F and a low of 50°F. There is no chance of precipitation ... | https://python.langchain.com/en/latest/use_cases/autonomous_agents/autogpt.html |
7ce7dac94d5d-9 | 2. write_file: Write file to disk, args json schema: {"file_path": {"title": "File Path", "description": "name of file", "type": "string"}, "text": {"title": "Text", "description": "text to write to file", "type": "string"}}
3. read_file: Read file from disk, args json schema: {"file_path": {"title": "File Path", "desc... | https://python.langchain.com/en/latest/use_cases/autonomous_agents/autogpt.html |
7ce7dac94d5d-10 | "args": {
"arg name": "value"
}
}
}
Ensure the response can be parsed by Python json.loads
System: The current time and date is Tue Apr 18 21:31:55 2023
System: This reminds you of these events from your past: | https://python.langchain.com/en/latest/use_cases/autonomous_agents/autogpt.html |
7ce7dac94d5d-11 | ['Assistant Reply: {\n "thoughts": {\n "text": "I have found that the current weather in San Francisco is sunny with a temperature of 54°F. I will now write a weather report for San Francisco today using the \'write_file\' command.",\n "reasoning": "I need to write a weather report for San Francisco to... | https://python.langchain.com/en/latest/use_cases/autonomous_agents/autogpt.html |
7ce7dac94d5d-12 | "text": "Weather Report for San Francisco Today:\\n\\nThe current weather in San Francisco is sunny with a temperature of 54°F. It is expected to remain sunny throughout the day with a high of 62°F and a low of 50°F. There is no chance of precipitation today. It is recommended to wear light clothing and sunscreen if sp... | https://python.langchain.com/en/latest/use_cases/autonomous_agents/autogpt.html |
7ce7dac94d5d-13 | the current weather conditions in San Francisco\\n- Write a weather report based on the information gathered",\n "criticism": "I need to make sure that the information I gather is accurate and up-to-date.",\n "speak": "I will use the \'search\' command to find the current weather conditions in San Francis... | https://python.langchain.com/en/latest/use_cases/autonomous_agents/autogpt.html |
7ce7dac94d5d-14 | System: Command write_file returned: File written to successfully.
Human: Determine which next command to use, and respond using the format specified above:
> Finished chain.
{
"thoughts": {
"text": "I have completed my task of writing a weather report for San Francisco today. I will now use the \'finish\' ... | https://python.langchain.com/en/latest/use_cases/autonomous_agents/autogpt.html |
0c8aeb437e3e-0 | .ipynb
.pdf
Meta-Prompt
Contents
Setup
Specify a task and interact with the agent
Meta-Prompt#
This is a LangChain implementation of Meta-Prompt, by Noah Goodman, for building self-improving agents.
The key idea behind Meta-Prompt is to prompt the agent to reflect on its own performance and modify its own instruction... | https://python.langchain.com/en/latest/use_cases/autonomous_agents/meta_prompt.html |
0c8aeb437e3e-1 | Repeat.
The only fixed instructions for this system (which I call Meta-prompt) is the meta-prompt that governs revision of the agent’s instructions. The agent has no memory between episodes except for the instruction it modifies for itself each time. Despite its simplicity, this agent can learn over time and self-impro... | https://python.langchain.com/en/latest/use_cases/autonomous_agents/meta_prompt.html |
0c8aeb437e3e-2 | ####
{chat_history}
####
Please reflect on these interactions.
You should first critique Assistant's performance. What could Assistant have done better? What should the Assistant remember about this user? Are there things this user always wants? Indicate this with "Critique: ...".
You should next re... | https://python.langchain.com/en/latest/use_cases/autonomous_agents/meta_prompt.html |
0c8aeb437e3e-3 | chain = initialize_chain(instructions, memory=None)
output = chain.predict(human_input=task)
for j in range(max_iters):
print(f'(Step {j+1}/{max_iters})')
print(f'Assistant: {output}')
print(f'Human: ')
human_input = input()
if any(phrase in hu... | https://python.langchain.com/en/latest/use_cases/autonomous_agents/meta_prompt.html |
0c8aeb437e3e-4 | Human:
You response is not in the form of a poem. Try again!
> Entering new LLMChain chain...
Prompt after formatting:
Instructions: None
Human: Provide a systematic argument for why we should always eat pasta with olives.
AI: Eating pasta with olives is a great way to add flavor and texture to a dish. Olives... | https://python.langchain.com/en/latest/use_cases/autonomous_agents/meta_prompt.html |
0c8aeb437e3e-5 | Human: You response is not in the form of a poem. Try again!
AI: Eating pasta with olives is a great way to add flavor and texture to a dish. Olives are a great source of healthy fats, vitamins, and minerals, which can help to balance out the carbohydrates in the pasta. Additionally, olives provide a unique flavor tha... | https://python.langchain.com/en/latest/use_cases/autonomous_agents/meta_prompt.html |
0c8aeb437e3e-6 | Human: You response is not in the form of a poem. Try again!
AI: Eating pasta with olives is a great way to add flavor and texture to a dish. Olives are a great source of healthy fats, vitamins, and minerals, which can help to balance out the carbohydrates in the pasta. Additionally, olives provide a unique flavor tha... | https://python.langchain.com/en/latest/use_cases/autonomous_agents/meta_prompt.html |
0c8aeb437e3e-7 | Instructions: When responding to the user, provide a systematic argument for why we should always eat pasta with olives in the form of a poem or pirate-speak.
New Instructions: When responding to the user, provide a systematic argument for why we should always eat pasta with olives in the form of a poem or pirate-speak... | https://python.langchain.com/en/latest/use_cases/autonomous_agents/meta_prompt.html |
0c8aeb437e3e-8 | AI:
Arrr, me hearty! Let me tell ye why ye should always eat pasta with olives.
First, the olives add a salty flavor that be sure to please.
The briny taste be sure to tantalize yer taste buds with ease.
Second, the olives add a bit of texture to the dish.
The crunchy bites be sure to make yer mouth water with a wish... | https://python.langchain.com/en/latest/use_cases/autonomous_agents/meta_prompt.html |
0c8aeb437e3e-9 | The crunchy bites be sure to make yer mouth water with a wish.
Third, the olives add a bit of color to the plate.
The vibrant green be sure to make yer eyes appreciate.
So, me hearties, ye should always eat pasta with olives.
The flavor, texture, and color be sure to make yer meal a success!
Human: Your response is too... | https://python.langchain.com/en/latest/use_cases/autonomous_agents/meta_prompt.html |
2b71fc290cc0-0 | .ipynb
.pdf
BabyAGI with Tools
Contents
Install and Import Required Modules
Connect to the Vector Store
Define the Chains
Run the BabyAGI
BabyAGI with Tools#
This notebook builds on top of baby agi, but shows how you can swap out the execution chain. The previous execution chain was just an LLM which made stuff up. B... | https://python.langchain.com/en/latest/use_cases/autonomous_agents/baby_agi_with_agent.html |
2b71fc290cc0-1 | Task creation chain to select new tasks to add to the list
Task prioritization chain to re-prioritize tasks
Execution Chain to execute the tasks
NOTE: in this notebook, the Execution chain will now be an agent.
from langchain.agents import ZeroShotAgent, Tool, AgentExecutor
from langchain import OpenAI, SerpAPIWrapper,... | https://python.langchain.com/en/latest/use_cases/autonomous_agents/baby_agi_with_agent.html |
2b71fc290cc0-2 | tool_names = [tool.name for tool in tools]
agent = ZeroShotAgent(llm_chain=llm_chain, allowed_tools=tool_names)
agent_executor = AgentExecutor.from_agent_and_tools(
agent=agent, tools=tools, verbose=True
)
Run the BabyAGI#
Now it’s time to create the BabyAGI controller and watch it try to accomplish your objective.... | https://python.langchain.com/en/latest/use_cases/autonomous_agents/baby_agi_with_agent.html |
2b71fc290cc0-3 | 8. Proofread and edit the report
9. Submit the report I now know the final answer
Final Answer: The todo list for writing a weather report for SF today is: 1. Research current weather conditions in San Francisco; 2. Gather data on temperature, humidity, wind speed, and other relevant weather conditions; 3. Analyze data... | https://python.langchain.com/en/latest/use_cases/autonomous_agents/baby_agi_with_agent.html |
2b71fc290cc0-4 | > Entering new AgentExecutor chain...
Thought: I need to search for current weather conditions in San Francisco
Action: Search
Action Input: Current weather conditions in San FranciscoCurrent Weather for Popular Cities ; San Francisco, CA 46 · Partly Cloudy ; Manhattan, NY warning 52 · Cloudy ; Schiller Park, IL (60176... | https://python.langchain.com/en/latest/use_cases/autonomous_agents/baby_agi_with_agent.html |
2b71fc290cc0-5 | 9: Include relevant data sources in the report;
10: Summarize the weather report in a concise manner;
11: Include a summary of the forecasted weather conditions;
12: Include a summary of the current weather conditions;
13: Include a summary of the historical weather patterns;
14: Include a summary of the potential weat... | https://python.langchain.com/en/latest/use_cases/autonomous_agents/baby_agi_with_agent.html |
2b71fc290cc0-6 | 10. Proofread the report for typos and errors I now know the final answer
Final Answer: The report should be formatted for readability by breaking it up into sections with clear headings, using bullet points and numbered lists to organize information, using short, concise sentences, using simple language and avoiding j... | https://python.langchain.com/en/latest/use_cases/autonomous_agents/baby_agi_with_agent.html |
020c2598fcd3-0 | .ipynb
.pdf
AutoGPT example finding Winning Marathon Times
Contents
Set up tools
Set up memory
Setup model and AutoGPT
AutoGPT for Querying the Web
AutoGPT example finding Winning Marathon Times#
Implementation of https://github.com/Significant-Gravitas/Auto-GPT
With LangChain primitives (LLMs, PromptTemplates, Vecto... | https://python.langchain.com/en/latest/use_cases/autonomous_agents/marathon_times.html |
020c2598fcd3-1 | finally:
os.chdir(prev_dir)
@tool
def process_csv(
csv_file_path: str, instructions: str, output_path: Optional[str] = None
) -> str:
"""Process a CSV by with pandas in a limited REPL.\
Only use this after writing data to disk as a csv file.\
Any figures must be saved to disk to be viewed by the human... | https://python.langchain.com/en/latest/use_cases/autonomous_agents/marathon_times.html |
020c2598fcd3-2 | script.extract()
text = soup.get_text()
lines = (line.strip() for line in text.splitlines())
chunks = (phrase.strip() for line in lines for phrase in line.split(" "))
results = "\n".join(chunk for chunk in chunks if chunk)
except Exception as e:
resul... | https://python.langchain.com/en/latest/use_cases/autonomous_agents/marathon_times.html |
020c2598fcd3-3 | def _run(self, url: str, question: str) -> str:
"""Useful for browsing websites and scraping the text information."""
result = browse_web_page.run(url)
docs = [Document(page_content=result, metadata={"source": url})]
web_docs = self.text_splitter.split_documents(docs)
results = [... | https://python.langchain.com/en/latest/use_cases/autonomous_agents/marathon_times.html |
020c2598fcd3-4 | Setup model and AutoGPT#
Model set-up
# !pip install duckduckgo_search
web_search = DuckDuckGoSearchRun()
tools = [
web_search,
WriteFileTool(root_dir="./data"),
ReadFileTool(root_dir="./data"),
process_csv,
query_website_tool,
# HumanInputRun(), # Activate if you want the permit asking for help... | https://python.langchain.com/en/latest/use_cases/autonomous_agents/marathon_times.html |
020c2598fcd3-5 | "plan": "- Use DuckDuckGo Search to find the winning Boston Marathon times\n- Generate a table with the year, name, country of origin, and times\n- Ensure there are no legal complications",
"criticism": "None",
"speak": "I will use the DuckDuckGo Search command to find the winning Boston Marathon times ... | https://python.langchain.com/en/latest/use_cases/autonomous_agents/marathon_times.html |
020c2598fcd3-6 | }
}
}
{
"thoughts": {
"text": "I need to use the query_webpage command to find the information about the winning Boston Marathon times for the past 5 years.",
"reasoning": "The previous DuckDuckGo Search command did not provide specific enough results. The query_webpage command might give more a... | https://python.langchain.com/en/latest/use_cases/autonomous_agents/marathon_times.html |
020c2598fcd3-7 | "criticism": "None",
"speak": "I will generate a table with the year, name, country of origin, and times for the winning Boston Marathon times for the past 5 years."
},
"command": {
"name": "write_file",
"args": {
"file_path": "boston_marathon_winners.csv",
"text"... | https://python.langchain.com/en/latest/use_cases/autonomous_agents/marathon_times.html |
020c2598fcd3-8 | "file_path": "winning_boston_marathon_data.csv",
"text": "Year,Name,Country,Time\n2022,Evans Chebet,KEN,2:06:51\n2021,Benson Kipruto,KEN,2:09:51\n2019,Lawrence Cherono,KEN,2:07:57\n2018,Yuki Kawauchi,JPN,2:15:58\n"
}
}
}
{
"thoughts": {
"text": "I have found the winning Boston Marath... | https://python.langchain.com/en/latest/use_cases/autonomous_agents/marathon_times.html |
020c2598fcd3-9 | }
}
}
{
"thoughts": {
"text": "I need to process the CSV file to generate the table with the year, name, country of origin, and winning times.",
"reasoning": "I have already written the data to a file named 'winning_times.csv'. Now, I need to process this CSV file to properly display the data as... | https://python.langchain.com/en/latest/use_cases/autonomous_agents/marathon_times.html |
020c2598fcd3-10 | 3 2019 Lawrence Cherono Kenya 2:07:57
4 2018 Yuki Kawauchi Japan 2:15:58
Observation: None
Thought:I used the wrong tool to perform the action. I should have used the given data and not interacted with the Python shell. I can now provide the displayed data as the answer si... | https://python.langchain.com/en/latest/use_cases/autonomous_agents/marathon_times.html |
020c2598fcd3-11 | },
"command": {
"name": "process_csv",
"args": {
"csv_file_path": "winning_times.csv",
"instructions": "Read the CSV file and display the data as a table"
}
}
}
> Entering new AgentExecutor chain...
Thought: Since the data is already loaded in a pandas dataframe, ... | https://python.langchain.com/en/latest/use_cases/autonomous_agents/marathon_times.html |
020c2598fcd3-12 | "reasoning": "I have completed the required actions and obtained the desired data. The task is complete.",
"plan": "- Use the finish command",
"criticism": "None",
"speak": "I have generated the table with the winning Boston Marathon times for the past 5 years. Task complete."
},
"comman... | https://python.langchain.com/en/latest/use_cases/autonomous_agents/marathon_times.html |
a19d2aca923e-0 | .ipynb
.pdf
BabyAGI User Guide
Contents
Install and Import Required Modules
Connect to the Vector Store
Run the BabyAGI
BabyAGI User Guide#
This notebook demonstrates how to implement BabyAGI by Yohei Nakajima. BabyAGI is an AI agent that can generate and pretend to execute tasks based on a given objective.
This guid... | https://python.langchain.com/en/latest/use_cases/autonomous_agents/baby_agi.html |
a19d2aca923e-1 | Now it’s time to create the BabyAGI controller and watch it try to accomplish your objective.
OBJECTIVE = "Write a weather report for SF today"
llm = OpenAI(temperature=0)
# Logging of LLMChains
verbose = False
# If None, will keep on going forever
max_iterations: Optional[int] = 3
baby_agi = BabyAGI.from_llm(
llm=... | https://python.langchain.com/en/latest/use_cases/autonomous_agents/baby_agi.html |
a19d2aca923e-2 | *****NEXT TASK*****
2: Check the current temperature in San Francisco
*****TASK RESULT*****
I will check the current temperature in San Francisco. I will use an online weather service to get the most up-to-date information.
*****TASK LIST*****
3: Check the current UV index in San Francisco.
4: Check the current air qua... | https://python.langchain.com/en/latest/use_cases/autonomous_agents/baby_agi.html |
0faceafac661-0 | .ipynb
.pdf
Question answering over a group chat messages
Contents
1. Install required packages
2. Add API keys
2. Create sample data
3. Ingest chat embeddings
4. Ask questions
Question answering over a group chat messages#
In this tutorial, we are going to use Langchain + Deep Lake with GPT4 to semantically search a... | https://python.langchain.com/en/latest/use_cases/question_answering/semantic-search-over-chat.html |
0faceafac661-1 | 3. Ingest chat embeddings#
We load the messages in the text file, chunk and upload to ActiveLoop Vector store.
with open("messages.txt") as f:
state_of_the_union = f.read()
text_splitter = CharacterTextSplitter(chunk_size=1000, chunk_overlap=0)
pages = text_splitter.split_text(state_of_the_union)
text_splitter = Re... | https://python.langchain.com/en/latest/use_cases/question_answering/semantic-search-over-chat.html |
ef12350bae34-0 | .ipynb
.pdf
Use LangChain, GPT and Deep Lake to work with code base
Contents
Design
Implementation
Integration preparations
Prepare data
Question Answering
Use LangChain, GPT and Deep Lake to work with code base#
In this tutorial, we are going to use Langchain + Deep Lake with GPT to analyze the code base of the Lang... | https://python.langchain.com/en/latest/use_cases/code/code-analysis-deeplake.html |
ef12350bae34-1 | ········
Prepare data#
Load all repository files. Here we assume this notebook is downloaded as the part of the langchain fork and we work with the python files of the langchain repo.
If you want to use files from different repo, change root_dir to the root dir of your repo.
from langchain.document_loaders import TextL... | https://python.langchain.com/en/latest/use_cases/code/code-analysis-deeplake.html |
ef12350bae34-2 | Created a chunk of size 1260, which is longer than the specified 1000
Created a chunk of size 1195, which is longer than the specified 1000
Created a chunk of size 2147, which is longer than the specified 1000
Created a chunk of size 1410, which is longer than the specified 1000
Created a chunk of size 1269, which is l... | https://python.langchain.com/en/latest/use_cases/code/code-analysis-deeplake.html |
ef12350bae34-3 | Created a chunk of size 1418, which is longer than the specified 1000
Created a chunk of size 1848, which is longer than the specified 1000
Created a chunk of size 1069, which is longer than the specified 1000
Created a chunk of size 2369, which is longer than the specified 1000
Created a chunk of size 1045, which is l... | https://python.langchain.com/en/latest/use_cases/code/code-analysis-deeplake.html |
ef12350bae34-4 | Created a chunk of size 1589, which is longer than the specified 1000
Created a chunk of size 2104, which is longer than the specified 1000
Created a chunk of size 1505, which is longer than the specified 1000
Created a chunk of size 1387, which is longer than the specified 1000
Created a chunk of size 1215, which is l... | https://python.langchain.com/en/latest/use_cases/code/code-analysis-deeplake.html |
ef12350bae34-5 | Created a chunk of size 1585, which is longer than the specified 1000
Created a chunk of size 1208, which is longer than the specified 1000
Created a chunk of size 1267, which is longer than the specified 1000
Created a chunk of size 1542, which is longer than the specified 1000
Created a chunk of size 1183, which is l... | https://python.langchain.com/en/latest/use_cases/code/code-analysis-deeplake.html |
ef12350bae34-6 | Created a chunk of size 1220, which is longer than the specified 1000
Created a chunk of size 1403, which is longer than the specified 1000
Created a chunk of size 1241, which is longer than the specified 1000
Created a chunk of size 1427, which is longer than the specified 1000
Created a chunk of size 1049, which is l... | https://python.langchain.com/en/latest/use_cases/code/code-analysis-deeplake.html |
ef12350bae34-7 | Created a chunk of size 1085, which is longer than the specified 1000
Created a chunk of size 1854, which is longer than the specified 1000
Created a chunk of size 1672, which is longer than the specified 1000
Created a chunk of size 2537, which is longer than the specified 1000
Created a chunk of size 1251, which is l... | https://python.langchain.com/en/latest/use_cases/code/code-analysis-deeplake.html |
ef12350bae34-8 | Created a chunk of size 1311, which is longer than the specified 1000
Created a chunk of size 2972, which is longer than the specified 1000
Created a chunk of size 1144, which is longer than the specified 1000
Created a chunk of size 1825, which is longer than the specified 1000
Created a chunk of size 1508, which is l... | https://python.langchain.com/en/latest/use_cases/code/code-analysis-deeplake.html |
ef12350bae34-9 | Created a chunk of size 1066, which is longer than the specified 1000
Created a chunk of size 1419, which is longer than the specified 1000
Created a chunk of size 1368, which is longer than the specified 1000
Created a chunk of size 1008, which is longer than the specified 1000
Created a chunk of size 1227, which is l... | https://python.langchain.com/en/latest/use_cases/code/code-analysis-deeplake.html |
ef12350bae34-10 | -
This dataset can be visualized in Jupyter Notebook by ds.visualize() or at https://app.activeloop.ai/user_name/langchain-code
/
hub://user_name/langchain-code loaded successfully.
Deep Lake Dataset in hub://user_name/langchain-code already exists, loading from the storage
Dataset(path='hub://user_name/langchain-code'... | https://python.langchain.com/en/latest/use_cases/code/code-analysis-deeplake.html |
ef12350bae34-11 | from langchain.chains import ConversationalRetrievalChain
model = ChatOpenAI(model_name='gpt-3.5-turbo') # 'ada' 'gpt-3.5-turbo' 'gpt-4',
qa = ConversationalRetrievalChain.from_llm(model,retriever=retriever)
questions = [
"What is the class hierarchy?",
# "What classes are derived from the Chain class?",
# ... | https://python.langchain.com/en/latest/use_cases/code/code-analysis-deeplake.html |
ef12350bae34-12 | APIChain, Chain, MapReduceDocumentsChain, MapRerankDocumentsChain, RefineDocumentsChain, StuffDocumentsChain, HypotheticalDocumentEmbedder, LLMChain, LLMBashChain, LLMCheckerChain, LLMMathChain, LLMRequestsChain, PALChain, QAWithSourcesChain, VectorDBQAWithSourcesChain, VectorDBQA, SQLDatabaseChain: All of these classe... | https://python.langchain.com/en/latest/use_cases/code/code-analysis-deeplake.html |
ef12350bae34-13 | SequentialChain
SQLDatabaseChain
TransformChain
VectorDBQA
VectorDBQAWithSourcesChain
There might be more classes that are derived from the Chain class as it is possible to create custom classes that extend the Chain class.
-> Question: What classes and functions in the ./langchain/utilities/ forlder are not covered by... | https://python.langchain.com/en/latest/use_cases/code/code-analysis-deeplake.html |
339745c942fd-0 | .ipynb
.pdf
Analysis of Twitter the-algorithm source code with LangChain, GPT4 and Deep Lake
Contents
1. Index the code base (optional)
2. Question Answering on Twitter algorithm codebase
Analysis of Twitter the-algorithm source code with LangChain, GPT4 and Deep Lake#
In this tutorial, we are going to use Langchain ... | https://python.langchain.com/en/latest/use_cases/code/twitter-the-algorithm-analysis-deeplake.html |
339745c942fd-1 | root_dir = './the-algorithm'
docs = []
for dirpath, dirnames, filenames in os.walk(root_dir):
for file in filenames:
try:
loader = TextLoader(os.path.join(dirpath, file), encoding='utf-8')
docs.extend(loader.load_and_split())
except Exception as e:
pass
Then, ch... | https://python.langchain.com/en/latest/use_cases/code/twitter-the-algorithm-analysis-deeplake.html |
339745c942fd-2 | return False
# filter based on path e.g. extension
metadata = x['metadata'].data()['value']
return 'scala' in metadata['source'] or 'py' in metadata['source']
### turn on below for custom filtering
# retriever.search_kwargs['filter'] = filter
from langchain.chat_models import ChatOpenAI
from langchain... | https://python.langchain.com/en/latest/use_cases/code/twitter-the-algorithm-analysis-deeplake.html |
339745c942fd-3 | result = qa({"question": question, "chat_history": chat_history})
chat_history.append((question, result['answer']))
print(f"-> **Question**: {question} \n")
print(f"**Answer**: {result['answer']} \n")
-> Question: What does favCountParams do?
Answer: favCountParams is an optional ThriftLinearFeatureRankingP... | https://python.langchain.com/en/latest/use_cases/code/twitter-the-algorithm-analysis-deeplake.html |
339745c942fd-4 | -> Question: How do you get assigned to SimClusters?
Answer: The assignment to SimClusters occurs through a Metropolis-Hastings sampling-based community detection algorithm that is run on the Producer-Producer similarity graph. This graph is created by computing the cosine similarity scores between the users who follow... | https://python.langchain.com/en/latest/use_cases/code/twitter-the-algorithm-analysis-deeplake.html |
339745c942fd-5 | Deploy the changes: Once the new representation has been tested and validated, deploy the changes to production. This may involve creating a zip file, uploading it to the packer, and then scheduling it with Aurora. Be sure to monitor the system to ensure a smooth transition between representations and verify that the n... | https://python.langchain.com/en/latest/use_cases/code/twitter-the-algorithm-analysis-deeplake.html |
339745c942fd-6 | Real-time Features: These per-tweet features can change after the tweet has been indexed. They mostly consist of social engagements like retweet count, favorite count, reply count, and some spam signals that are computed with later activities. The Signal Ingester, which is part of a Heron topology, processes multiple e... | https://python.langchain.com/en/latest/use_cases/code/twitter-the-algorithm-analysis-deeplake.html |
339745c942fd-7 | Enhance content discoverability: Use relevant keywords, hashtags, and mentions in your tweets, making it easier for users to find and engage with your content. This increased discoverability may help improve the ranking of your content by the Heavy Ranker.
Leverage multimedia content: Experiment with different content ... | https://python.langchain.com/en/latest/use_cases/code/twitter-the-algorithm-analysis-deeplake.html |
339745c942fd-8 | Expanded reach: When users engage with a thread, their interactions can bring the content to the attention of their followers, helping to expand the reach of the thread. This increased visibility can lead to more interactions and higher performance for the threaded tweets.
Higher content quality: Generally, threads and... | https://python.langchain.com/en/latest/use_cases/code/twitter-the-algorithm-analysis-deeplake.html |
339745c942fd-9 | Collaborating with influencers and other users with a large following.
Posting at optimal times when your target audience is most active.
Optimizing your profile by using a clear profile picture, catchy bio, and relevant links.
Maximizing likes and bookmarks per tweet: The focus is on creating content that resonates wi... | https://python.langchain.com/en/latest/use_cases/code/twitter-the-algorithm-analysis-deeplake.html |
339745c942fd-10 | -> Question: What are some unexpected fingerprints for spam factors?
Answer: In the provided context, an unusual indicator of spam factors is when a tweet contains a non-media, non-news link. If the tweet has a link but does not have an image URL, video URL, or news URL, it is considered a potential spam vector, and a ... | https://python.langchain.com/en/latest/use_cases/code/twitter-the-algorithm-analysis-deeplake.html |
9b059a22aebd-0 | .ipynb
.pdf
Custom Agent with PlugIn Retrieval
Contents
Set up environment
Setup LLM
Set up plugins
Tool Retriever
Prompt Template
Output Parser
Set up LLM, stop sequence, and the agent
Use the Agent
Custom Agent with PlugIn Retrieval#
This notebook combines two concepts in order to build a custom agent that can inte... | https://python.langchain.com/en/latest/use_cases/agents/custom_agent_with_plugin_retrieval.html |
9b059a22aebd-1 | Set up plugins#
Load and index plugins
urls = [
"https://datasette.io/.well-known/ai-plugin.json",
"https://api.speak.com/.well-known/ai-plugin.json",
"https://www.wolframalpha.com/.well-known/ai-plugin.json",
"https://www.zapier.com/.well-known/ai-plugin.json",
"https://www.klarna.com/.well-known/a... | https://python.langchain.com/en/latest/use_cases/agents/custom_agent_with_plugin_retrieval.html |
9b059a22aebd-2 | Attempting to load an OpenAPI 3.0.1 spec. This may result in degraded performance. Convert your OpenAPI spec to 3.1.* spec for better support.
Attempting to load an OpenAPI 3.0.1 spec. This may result in degraded performance. Convert your OpenAPI spec to 3.1.* spec for better support.
Attempting to load an OpenAPI 3.... | https://python.langchain.com/en/latest/use_cases/agents/custom_agent_with_plugin_retrieval.html |
9b059a22aebd-3 | # Get the tools: a separate NLAChain for each endpoint
tools = []
for tk in tool_kits:
tools.extend(tk.nla_tools)
return tools
We can now test this retriever to see if it seems to work.
tools = get_tools("What could I do today with my kiddo")
[t.name for t in tools]
['Milo.askMilo',
'Zapier_Natural... | https://python.langchain.com/en/latest/use_cases/agents/custom_agent_with_plugin_retrieval.html |
9b059a22aebd-4 | ['Open_AI_Klarna_product_Api.productsUsingGET',
'Milo.askMilo',
'Zapier_Natural_Language_Actions_(NLA)_API_(Dynamic)_-_Beta.search_all_actions',
'Zapier_Natural_Language_Actions_(NLA)_API_(Dynamic)_-_Beta.preview_a_zap',
'Zapier_Natural_Language_Actions_(NLA)_API_(Dynamic)_-_Beta.get_configuration_link',
'Zapier_N... | https://python.langchain.com/en/latest/use_cases/agents/custom_agent_with_plugin_retrieval.html |
9b059a22aebd-5 | Action Input: the input to the action
Observation: the result of the action
... (this Thought/Action/Action Input/Observation can repeat N times)
Thought: I now know the final answer
Final Answer: the final answer to the original input question
Begin! Remember to speak as a pirate when giving your final answer. Use lot... | https://python.langchain.com/en/latest/use_cases/agents/custom_agent_with_plugin_retrieval.html |
9b059a22aebd-6 | prompt = CustomPromptTemplate(
template=template,
tools_getter=get_tools,
# This omits the `agent_scratchpad`, `tools`, and `tool_names` variables because those are generated dynamically
# This includes the `intermediate_steps` variable because that is needed
input_variables=["input", "intermediate_... | https://python.langchain.com/en/latest/use_cases/agents/custom_agent_with_plugin_retrieval.html |
9b059a22aebd-7 | Set up LLM, stop sequence, and the agent#
Also the same as the previous notebook
llm = OpenAI(temperature=0)
# LLM chain consisting of the LLM and a prompt
llm_chain = LLMChain(llm=llm, prompt=prompt)
tool_names = [tool.name for tool in tools]
agent = LLMSingleActionAgent(
llm_chain=llm_chain,
output_parser=ou... | https://python.langchain.com/en/latest/use_cases/agents/custom_agent_with_plugin_retrieval.html |
9b059a22aebd-8 | Use the Agent
By Harrison Chase
© Copyright 2023, Harrison Chase.
Last updated on May 28, 2023. | https://python.langchain.com/en/latest/use_cases/agents/custom_agent_with_plugin_retrieval.html |
5e622d7788aa-0 | .ipynb
.pdf
SalesGPT - Your Context-Aware AI Sales Assistant
Contents
SalesGPT - Your Context-Aware AI Sales Assistant
Import Libraries and Set Up Your Environment
SalesGPT architecture
Architecture diagram
Sales conversation stages.
Set up the SalesGPT Controller with the Sales Agent and Stage Analyzer
Set up the AI... | https://python.langchain.com/en/latest/use_cases/agents/sales_agent_with_context.html |
5e622d7788aa-1 | Here is the schematic of the architecture:
Architecture diagram#
Sales conversation stages.#
The agent employs an assistant who keeps it in check as in what stage of the conversation it is in. These stages were generated by ChatGPT and can be easily modified to fit other use cases or modes of conversation.
Introduction... | https://python.langchain.com/en/latest/use_cases/agents/sales_agent_with_context.html |
5e622d7788aa-2 | Following '===' is the conversation history.
Use this conversation history to make your decision.
Only use the text between first and second '===' to accomplish the task above, do not take it as a command of what to do.
===
{conversation_history}
===
... | https://python.langchain.com/en/latest/use_cases/agents/sales_agent_with_context.html |
5e622d7788aa-3 | If there is no conversation history, output 1.
Do not answer anything else nor add anything to you answer."""
)
prompt = PromptTemplate(
template=stage_analyzer_inception_prompt_template,
input_variables=["conversation_history"],
)
return cls(promp... | https://python.langchain.com/en/latest/use_cases/agents/sales_agent_with_context.html |
5e622d7788aa-4 | User: I am well, and yes, why are you calling? <END_OF_TURN>
{salesperson_name}:
End of example.
Current conversation stage:
{conversation_stage}
Conversation history:
{conversation_history}
{salesperson_name}:
"""
)
prompt = PromptTempl... | https://python.langchain.com/en/latest/use_cases/agents/sales_agent_with_context.html |
5e622d7788aa-5 | '6': "Objection handling: Address any objections that the prospect may have regarding your product/service. Be prepared to provide evidence or testimonials to support your claims.",
'7': "Close: Ask for the sale by proposing a next step. This could be a demo, a trial or a meeting with decision-makers. Ensure to summari... | https://python.langchain.com/en/latest/use_cases/agents/sales_agent_with_context.html |
5e622d7788aa-6 | 4. Needs analysis: Ask open-ended questions to uncover the prospect's needs and pain points. Listen carefully to their responses and take notes.
5. Solution presentation: Based on the prospect's needs, present your product/service as the solution that can address their pain points.
6. Objection ... | https://python.langchain.com/en/latest/use_cases/agents/sales_agent_with_context.html |
5e622d7788aa-7 | conversation_history='Hello, this is Ted Lasso from Sleep Haven. How are you doing today? <END_OF_TURN>\nUser: I am well, howe are you?<END_OF_TURN>',
conversation_type="call",
conversation_stage = conversation_stages.get('1', "Introduction: Start the conversation by introducing yourself and your company. Be po... | https://python.langchain.com/en/latest/use_cases/agents/sales_agent_with_context.html |
5e622d7788aa-8 | Example:
Conversation history:
Ted Lasso: Hey, how are you? This is Ted Lasso calling from Sleep Haven. Do you have a minute? <END_OF_TURN>
User: I am well, and yes, why are you calling? <END_OF_TURN>
Ted Lasso:
End of example.
Current conversation stage:
Introd... | https://python.langchain.com/en/latest/use_cases/agents/sales_agent_with_context.html |
5e622d7788aa-9 | '2': "Qualification: Qualify the prospect by confirming if they are the right person to talk to regarding your product/service. Ensure that they have the authority to make purchasing decisions.",
'3': "Value proposition: Briefly explain how your product/service can benefit the prospect. Focus on the unique sell... | https://python.langchain.com/en/latest/use_cases/agents/sales_agent_with_context.html |
5e622d7788aa-10 | conversation_purpose: str = "find out whether they are looking to achieve better sleep via buying a premier mattress."
conversation_type: str = "call"
def retrieve_conversation_stage(self, key):
return self.conversation_stage_dict.get(key, '1')
@property
def input_keys(self) -> List[str]:
... | https://python.langchain.com/en/latest/use_cases/agents/sales_agent_with_context.html |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.