Hi
This may sound dumb, but I am not able to get the output for cell 3 of the dummy_agent_library.ipynb.
I am getting the error “Invalid credentials in Authorization header”.
I already have access to the Meta Llama models.
I have tested the model with read and write tokens. I have copied these tokens in the secret as well as in cell 2.
I have also tried #client = InferenceClient(“https://jc26mwg228mkj8dw.us-east-1.aws.endpoints.huggingface.cloud”)
The above exception was the direct cause of the following exception:
HfHubHTTPError Traceback (most recent call last)
/usr/local/lib/python3.11/dist-packages/huggingface_hub/utils/_http.py in hf_raise_for_status(response, endpoint_name)
480 # Convert HTTPError into a HfHubHTTPError to display request information
481 # as well (request id and/or server error message)
→ 482 raise _format(HfHubHTTPError, str(e), response) from e
483
484