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
10 lines
358 B
Python
10 lines
358 B
Python
from rag_google_cloud_sensitive_data_protection.chain import chain
|
|
|
|
if __name__ == "__main__":
|
|
query = {
|
|
"question": "Good morning. My name is Captain Blackbeard. My phone number "
|
|
"is 555-555-5555. And my email is lovely.pirate@gmail.com. Have a nice day.",
|
|
"chat_history": [],
|
|
}
|
|
print(chain.invoke(query)) # noqa: T201
|