mirror of
https://github.com/hwchase17/langchain
synced 2024-11-02 09:40:22 +00:00
3a2eb6e12b
Added noqa for existing prints. Can slowly remove / will prevent more being intro'd
34 lines
946 B
Python
34 lines
946 B
Python
from rag_self_query import chain
|
|
|
|
if __name__ == "__main__":
|
|
questions = [
|
|
"What is the nasa sales team?",
|
|
"What is our work from home policy?",
|
|
"Does the company own my personal project?",
|
|
"How does compensation work?",
|
|
]
|
|
|
|
response = chain.invoke(
|
|
{
|
|
"question": questions[0],
|
|
"chat_history": [],
|
|
}
|
|
)
|
|
print(response) # noqa: T201
|
|
|
|
follow_up_question = "What are their objectives?"
|
|
|
|
response = chain.invoke(
|
|
{
|
|
"question": follow_up_question,
|
|
"chat_history": [
|
|
"What is the nasa sales team?",
|
|
"The sales team of NASA consists of Laura Martinez, the Area "
|
|
"Vice-President of North America, and Gary Johnson, the Area "
|
|
"Vice-President of South America. (Sales Organization Overview)",
|
|
],
|
|
}
|
|
)
|
|
|
|
print(response) # noqa: T201
|