Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/humanloop/memorai
🧠AI memory assistant – remember everything you read
https://github.com/humanloop/memorai
Last synced: 2 days ago
JSON representation
🧠AI memory assistant – remember everything you read
- Host: GitHub
- URL: https://github.com/humanloop/memorai
- Owner: humanloop
- Created: 2020-04-11T19:38:49.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-12-28T23:14:31.000Z (almost 2 years ago)
- Last Synced: 2024-08-09T17:29:37.103Z (3 months ago)
- Language: Python
- Homepage: https://memorai.humanloop.ml
- Size: 5.29 MB
- Stars: 293
- Watchers: 7
- Forks: 20
- Open Issues: 20
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Memorai> "Memory is fundamental to our thinking, and the notion of having a perfect memory is seductive." -- Michael Nielsen
Remember everything you read.Memorai is an AI that generates questions based on the text you're reading. It works out the perfect time to quiz you with novel AI generated questions.
# Platform
The alpha version of the Memorai platform is made up of:
* A Chrome extension for selecting what you wish to remember
* A machine learning question generation back end (inspired by https://github.com/KristiyanVachev/Question-Generation and using Spacy) exposed via REST API for creating novel quizes (hosted on Amazon Web Services)
* Integration to Anki memory tool using Anki connect (leveraging the users local instance of Anki)## Tech stack
- Svelte with webpack for the front end
- FastAPI, Python and spaCy for the back end## Development
To run the server:
```
pip install -r requirements.txt
python -m spacy download en_core_web_sm
export PYTHONPATH=`PWD`:$PYTHONPATH
python app/api.py
```To run the extension:
```
cd extension
yarn
yarn start
```