xke commited on
Commit
b94b151
Β·
1 Parent(s): 780f5aa

update readme w screenshot, next steps

Browse files
Files changed (2) hide show
  1. README.md +16 -2
  2. screenshot.png +0 -0
README.md CHANGED
@@ -1,10 +1,24 @@
1
  ---
2
- title: Chainlit Movie Rag
3
  emoji: πŸŒ–
4
  colorFrom: pink
5
  colorTo: gray
6
  sdk: docker
7
  pinned: false
8
  ---
 
 
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ title: Movie recommender
3
  emoji: πŸŒ–
4
  colorFrom: pink
5
  colorTo: gray
6
  sdk: docker
7
  pinned: false
8
  ---
9
+ ## Movie recommender (RAG and Chainlit demo)
10
+ This movie recommender is a demo of RAG using Chainlit.
11
 
12
+ Run the demo: https://huggingface.co/spaces/key2xanadu/chainlit-movie-rag
13
+
14
+ Demo screenshot:
15
+
16
+ ![Demo screenshot](screenshot.png "Demo screenshot")
17
+
18
+ Code files: https://huggingface.co/spaces/key2xanadu/chainlit-movie-rag/tree/main
19
+
20
+ Next steps / ideas:
21
+ * Use more caching. For example, load the vector store instead of creating a new one.
22
+ (try downloading the files created in co-lab session)
23
+ * Download the files from your notebook and store them in your Chainlit repo so you won't be recreating them every time you run the notebook (which will be a lot faster).
24
+ * Get FAISS working on local files [see reference](https://python.langchain.com/v0.1/docs/integrations/vectorstores/faiss/#saving-and-loading)
screenshot.png ADDED