aymanemalih commited on
Commit
8b12100
·
1 Parent(s): 27fe741

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +7 -1
main.py CHANGED
@@ -12,7 +12,7 @@ from sentence_transformers import SentenceTransformer
12
  model = SentenceTransformer('/code/vectorizing_model', cache_folder='/')
13
 
14
  # # # Set the environment variable TRANSFORMERS_CACHE to the writable directory
15
- # # os.environ['TRANSFORMERS_CACHE'] = '/app/sentence_transformers_cache'
16
 
17
 
18
  # # Set the cache folder to the one you created
@@ -52,6 +52,11 @@ collection_names = ["new_lir"] # replace with the collection name used on Qdrant
52
 
53
  import re
54
 
 
 
 
 
 
55
  def filtergpt(text):
56
  # Define a regular expression pattern to extract law and article number
57
  pattern = re.compile(r"Loi ([^,]+), article (\d+(\.\d+)?)")
@@ -72,6 +77,7 @@ def options():
72
  response.headers.add("Access-Control-Allow-Credentials", "true")
73
  return response
74
 
 
75
  @app.route('/chat', methods=['POST'])
76
  def chat():
77
  try:
 
12
  model = SentenceTransformer('/code/vectorizing_model', cache_folder='/')
13
 
14
  # # # Set the environment variable TRANSFORMERS_CACHE to the writable directory
15
+ os.environ['TRANSFORMERS_CACHE'] = '/code'
16
 
17
 
18
  # # Set the cache folder to the one you created
 
52
 
53
  import re
54
 
55
+ @app.route('/')
56
+ def hello_world():
57
+ return 'Hello, World!'
58
+
59
+
60
  def filtergpt(text):
61
  # Define a regular expression pattern to extract law and article number
62
  pattern = re.compile(r"Loi ([^,]+), article (\d+(\.\d+)?)")
 
77
  response.headers.add("Access-Control-Allow-Credentials", "true")
78
  return response
79
 
80
+
81
  @app.route('/chat', methods=['POST'])
82
  def chat():
83
  try: