mirror of
https://github.com/hwchase17/langchain
synced 2024-10-31 15:20:26 +00:00
3d859075d4
### Description When I was reading the document, I found that some examples had extra spaces and violated "Unexpected spaces around keyword / parameter equals (E251)" in pep8. I removed these extra spaces. ### Tag maintainer @eyurtsev ### Twitter handle [billvsme](https://twitter.com/billvsme)
139 lines
4.8 KiB
Plaintext
139 lines
4.8 KiB
Plaintext
```python
|
|
from langchain.chat_models import ChatOpenAI
|
|
|
|
llm = ChatOpenAI(temperature=0)
|
|
llm1 = OpenAI(temperature=0)
|
|
search = SerpAPIWrapper()
|
|
llm_math_chain = LLMMathChain(llm=llm1, verbose=True)
|
|
db = SQLDatabase.from_uri("sqlite:///../../../../../notebooks/Chinook.db")
|
|
db_chain = SQLDatabaseChain.from_llm(llm1, db, verbose=True)
|
|
tools = [
|
|
Tool(
|
|
name="Search",
|
|
func=search.run,
|
|
description="useful for when you need to answer questions about current events. You should ask targeted questions"
|
|
),
|
|
Tool(
|
|
name="Calculator",
|
|
func=llm_math_chain.run,
|
|
description="useful for when you need to answer questions about math"
|
|
),
|
|
Tool(
|
|
name="FooBar DB",
|
|
func=db_chain.run,
|
|
description="useful for when you need to answer questions about FooBar. Input should be in the form of a question containing full context"
|
|
)
|
|
]
|
|
```
|
|
|
|
|
|
```python
|
|
mrkl = initialize_agent(tools, llm, agent=AgentType.CHAT_ZERO_SHOT_REACT_DESCRIPTION, verbose=True)
|
|
```
|
|
|
|
|
|
```python
|
|
mrkl.run("Who is Leo DiCaprio's girlfriend? What is her current age raised to the 0.43 power?")
|
|
```
|
|
|
|
<CodeOutputBlock lang="python">
|
|
|
|
```
|
|
> Entering new AgentExecutor chain...
|
|
Thought: The first question requires a search, while the second question requires a calculator.
|
|
Action:
|
|
```
|
|
{
|
|
"action": "Search",
|
|
"action_input": "Leo DiCaprio girlfriend"
|
|
}
|
|
```
|
|
|
|
Observation: Gigi Hadid: 2022 Leo and Gigi were first linked back in September 2022, when a source told Us Weekly that Leo had his “sights set" on her (alarming way to put it, but okay).
|
|
Thought:For the second question, I need to calculate the age raised to the 0.43 power. I will use the calculator tool.
|
|
Action:
|
|
```
|
|
{
|
|
"action": "Calculator",
|
|
"action_input": "((2022-1995)^0.43)"
|
|
}
|
|
```
|
|
|
|
|
|
> Entering new LLMMathChain chain...
|
|
((2022-1995)^0.43)
|
|
```text
|
|
(2022-1995)**0.43
|
|
```
|
|
...numexpr.evaluate("(2022-1995)**0.43")...
|
|
|
|
Answer: 4.125593352125936
|
|
> Finished chain.
|
|
|
|
Observation: Answer: 4.125593352125936
|
|
Thought:I now know the final answer.
|
|
Final Answer: Gigi Hadid is Leo DiCaprio's girlfriend and her current age raised to the 0.43 power is approximately 4.13.
|
|
|
|
> Finished chain.
|
|
|
|
|
|
"Gigi Hadid is Leo DiCaprio's girlfriend and her current age raised to the 0.43 power is approximately 4.13."
|
|
```
|
|
|
|
</CodeOutputBlock>
|
|
|
|
|
|
```python
|
|
mrkl.run("What is the full name of the artist who recently released an album called 'The Storm Before the Calm' and are they in the FooBar database? If so, what albums of theirs are in the FooBar database?")
|
|
```
|
|
|
|
<CodeOutputBlock lang="python">
|
|
|
|
```
|
|
> Entering new AgentExecutor chain...
|
|
Question: What is the full name of the artist who recently released an album called 'The Storm Before the Calm' and are they in the FooBar database? If so, what albums of theirs are in the FooBar database?
|
|
Thought: I should use the Search tool to find the answer to the first part of the question and then use the FooBar DB tool to find the answer to the second part.
|
|
Action:
|
|
```
|
|
{
|
|
"action": "Search",
|
|
"action_input": "Who recently released an album called 'The Storm Before the Calm'"
|
|
}
|
|
```
|
|
|
|
Observation: Alanis Morissette
|
|
Thought:Now that I know the artist's name, I can use the FooBar DB tool to find out if they are in the database and what albums of theirs are in it.
|
|
Action:
|
|
```
|
|
{
|
|
"action": "FooBar DB",
|
|
"action_input": "What albums does Alanis Morissette have in the database?"
|
|
}
|
|
```
|
|
|
|
|
|
> Entering new SQLDatabaseChain chain...
|
|
What albums does Alanis Morissette have in the database?
|
|
SQLQuery:
|
|
|
|
/Users/harrisonchase/workplace/langchain/langchain/sql_database.py:191: SAWarning: Dialect sqlite+pysqlite does *not* support Decimal objects natively, and SQLAlchemy must convert from floating point - rounding errors and other issues may occur. Please consider storing Decimal numbers as strings or integers on this platform for lossless storage.
|
|
sample_rows = connection.execute(command)
|
|
|
|
|
|
SELECT "Title" FROM "Album" WHERE "ArtistId" IN (SELECT "ArtistId" FROM "Artist" WHERE "Name" = 'Alanis Morissette') LIMIT 5;
|
|
SQLResult: [('Jagged Little Pill',)]
|
|
Answer: Alanis Morissette has the album Jagged Little Pill in the database.
|
|
> Finished chain.
|
|
|
|
Observation: Alanis Morissette has the album Jagged Little Pill in the database.
|
|
Thought:The artist Alanis Morissette is in the FooBar database and has the album Jagged Little Pill in it.
|
|
Final Answer: Alanis Morissette is in the FooBar database and has the album Jagged Little Pill in it.
|
|
|
|
> Finished chain.
|
|
|
|
|
|
'Alanis Morissette is in the FooBar database and has the album Jagged Little Pill in it.'
|
|
```
|
|
|
|
</CodeOutputBlock>
|