-
Notifications
You must be signed in to change notification settings - Fork 535
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
OPENAI_API_KEY #1111
Comments
Also, since Difbott offers a free tier but is eventually a paid service, is the diffbott api key mandatory, and if so, for what? |
Hi @abdullah91111 For using LLM for extraction and chatbot, any of the following can be configured For more clarity you can refer example.env in backend folder. Diffbot is not mandatory if you are not using diffbot model. |
Another question: is it possible to use this as a rest API? If so is there any guide on how to do so |
our api's are designed specific to our application so we will not recommend to use our Api's for budling the application |
you can use neo4j graphrag python package for building the gen ai application |
In my use case scenario I dont want to build on top of the application but just use the rest api and integrate it with my n8n automated workflow. Would that be possible. |
in that case you can use by providing appropriate payload |
Issue: Unable to Extract Entity Relationships from a Wikipedia PageContextI’m using the n8n HTTP node to integrate with GraphRAG. The process consists of two steps:
Step 1: Uploading the Wikipedia Document via
|
For more context, I checked the status of the document node "Albert_Einstein" under properties, and the status is "New," so I don't understand why the status isn't passed in /extract endpoint. |
You need pass parameter wikiquery and filename are same because in the extraction WikipediaLoader takes query string to search instead of wiki URL. Params looks like.. wiki_query: Albert_Einstein |
2025-02-22 20:55:44 openai.AuthenticationError: Error code: 401 - {'error': {'message': 'Incorrect API key provided: openai_a**_key. You can find your API key at https://platform.openai.com/account/api-keys.', 'type': 'invalid_request_error', 'param': None, 'code': 'invalid_api_key'}}
When the document is processed the status shows failed and the above error occurs.
However I have updated the .env file with my open ai api key
If im correct I only need to replace OPENAI_API_KEY = "my_API_KEY" and nowhere else right?
If someone can let me know the why this error occurs.
The text was updated successfully, but these errors were encountered: