Latest version of HazyResearch/manifest doesn't support accessing "client" directly (#10389)

**Description:** 
The latest version of HazyResearch/manifest doesn't support accessing
the "client" directly. The latest version supports connection pools and
a client has to be requested from the client pool.
**Issue:**
No matching issue was found
**Dependencies:** 
The manifest.ipynb file in docs/extras/integrations/llms need to be
updated
**Twitter handle:** 
@hrk_cbe
This commit is contained in:
Rajesh Kumar
2023-09-12 02:52:53 +05:30
committed by GitHub
parent 31739577c2
commit 737b75d278
2 changed files with 5 additions and 2 deletions

View File

@@ -57,7 +57,7 @@
"manifest = Manifest(\n",
" client_name=\"huggingface\", client_connection=\"http://127.0.0.1:5000\"\n",
")\n",
"print(manifest.client.get_model_params())"
"print(manifest.client_pool.get_current_client().get_model_params())"
]
},
{