Formatting on ntbks (#12576)

This commit is contained in:
Lance Martin 2023-10-30 11:32:31 -07:00 committed by GitHub
parent 08103e6d48
commit c57945e0a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View File

@ -22,8 +22,9 @@
"outputs": [],
"source": [
"from langserve.client import RemoteRunnable\n",
"\n",
"llama2_function = RemoteRunnable(\"http://0.0.0.0:8001/llama2_functions\")\n",
"llama2_function.invoke({\"question\":\"How does agent memory work?\"})"
"llama2_function.invoke({\"question\": \"How does agent memory work?\"})"
]
}
],

View File

@ -29,6 +29,7 @@
],
"source": [
"from langserve.client import RemoteRunnable\n",
"\n",
"rag_app = RemoteRunnable(\"http://0.0.0.0:8001/rag_chroma_private/\")\n",
"rag_app.invoke(\"How does agent memory work?\")"
]