alexneakameni commited on
Commit
9f75075
·
verified ·
1 Parent(s): 9348085

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -1,8 +1,9 @@
 
1
  from typing import Dict, List
2
 
3
  import gradio as gr
4
  from src.rag_pipeline.rag_system import RAGSystem
5
-
6
 
7
  class ChatInterface:
8
  def __init__(self, rag_system: RAGSystem):
 
1
+ import os
2
  from typing import Dict, List
3
 
4
  import gradio as gr
5
  from src.rag_pipeline.rag_system import RAGSystem
6
+ os.environ["TOKENIZERS_PARALLELISM"]="true"
7
 
8
  class ChatInterface:
9
  def __init__(self, rag_system: RAGSystem):