Replies: 5 comments 2 replies
-
|
Hey there, @ssalikoff! I'm here to help you with any bugs, questions, or contributions. Let's tackle this together! To resolve the "UnauthorizedError: status_code: 401, body: {'message': 'invalid api token'}" issue, ensure the following:
If these steps don't resolve the issue, you might need to investigate the token generation and assignment process further. |
Beta Was this translation helpful? Give feedback.
-
|
I don't understand what this is about:
What other token is being referred to? Where can I get it and where should I enter it?" |
Beta Was this translation helpful? Give feedback.
-
|
@dosu Nothing is clear. What specific steps should I take? What documentation is being referred to? Where can I find it? |
Beta Was this translation helpful? Give feedback.
-
|
So, in order to use Quivr, do I need to be a Python developer myself? |
Beta Was this translation helpful? Give feedback.
-
|
Debugging brain request failures: 1. Check brain exists curl http://localhost:5050/brains
# Should list your brains2. Verify brain ID # Make sure you're using the right UUID
brain_id = "your-brain-uuid-here"3. Check API logs docker logs quivr-backend-1
# Look for error messages4. Test with curl curl -X POST http://localhost:5050/chat \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $TOKEN" \
-d '{"brain_id": "...", "question": "test"}'Common issues:
5. Check Supabase/Qdrant docker logs quivr-supabase-1
docker logs quivr-qdrant-1We debug RAG systems at RevolutionAI. Usually it's an auth or indexing issue. What error message do you see? |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello!
I have deployed Quivr according to the instructions and entered the ChatGPT API key in .env file
I created a brain and added a text document to it.
However, when I make a request to this brain, I receive an error:
TypeError: NetworkError when attempting to fetch resource.And in the console output, I see the message:
backend-api | UnauthorizedError: status_code: 401, body: {'message': 'invalid api token'}At the same time, requests to the GPT-4 model are working.
In my OpenAI account, I see that the tokens are being spent.
Could you please advise me on how to resolve this issue?
Beta Was this translation helpful? Give feedback.
All reactions