Skip to content

Commit

Permalink
chore: minor
Browse files Browse the repository at this point in the history
  • Loading branch information
ramchaik committed Sep 2, 2024
1 parent 206aff0 commit 840dba1
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions ReadMe.md
Original file line number Diff line number Diff line change
Expand Up @@ -162,16 +162,14 @@ If you prefer to run the services locally for development:
To add your personal links for Nous to process:

1. Open the `llm_api/config.py` file.
2. Locate the `URLS` list in the file.
2. Locate the `KNOWLEDGE_BASE_URLS` list in the file.
3. Add your personal URLs to this list.
4. Save the file and restart the Flask app for changes to take effect.

Example:

```python
URLS = [
"https://tip.golang.org/tour/concurrency.article",
"https://tip.golang.org/doc/effective_go",
KNOWLEDGE_BASE_URLS = [
"https://your-personal-link.com/document.pdf",
"https://another-personal-link.com/notes.txt"
]
Expand Down Expand Up @@ -265,10 +263,8 @@ The LLM service configuration controls the behavior of the Flask app that manage
4. **Personal Knowledge Base Resources**
```python
KNOWLEDGE_BASE_URLS = [
"https://tip.golang.org/tour/concurrency.article",
"https://tip.golang.org/doc/effective_go",
"https://gosafir.com/mag/wp-content/uploads/2019/12/Tolkien-J.-The-lord-of-the-rings-HarperCollins-ebooks-2010.pdf",
"https://gist.github.com/silver-xu/1dcceaa14c4f0253d9637d4811948437",
"https://your-personal-link.com/document.pdf",
"https://another-personal-link.com/notes.txt"
]
```
- List of URLs for documents to be ingested into the knowledge base.
Expand Down

0 comments on commit 840dba1

Please sign in to comment.