change
Browse files
app.py
CHANGED
@@ -9,6 +9,7 @@ import os
|
|
9 |
import numpy as np
|
10 |
from openai import OpenAI
|
11 |
import ollama
|
|
|
12 |
|
13 |
# Configurer les répertoires de cache
|
14 |
os.environ['TRANSFORMERS_CACHE'] = '/app/.cache'
|
@@ -27,7 +28,12 @@ client = OpenAI(
|
|
27 |
)
|
28 |
|
29 |
#Additional information
|
30 |
-
|
|
|
|
|
|
|
|
|
|
|
31 |
Informations = """
|
32 |
-text : Texte à resumé
|
33 |
|
@@ -67,6 +73,13 @@ instructions_par_defaut = (
|
|
67 |
# "3. Actions prises et suivis incluant les dates et les personnes impliquées. "
|
68 |
# "4. Toute action supplémentaire ou recommandation nécessaire."
|
69 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
70 |
class TextSummary(BaseModel):
|
71 |
prompt:str
|
72 |
|
|
|
9 |
import numpy as np
|
10 |
from openai import OpenAI
|
11 |
import ollama
|
12 |
+
from fastapi.middleware.cors import CORSMiddleware
|
13 |
|
14 |
# Configurer les répertoires de cache
|
15 |
os.environ['TRANSFORMERS_CACHE'] = '/app/.cache'
|
|
|
28 |
)
|
29 |
|
30 |
#Additional information
|
31 |
+
origins = [
|
32 |
+
"https://bambadij-summaryt5.hf.space/",
|
33 |
+
"http://bambadij-summaryt5.hf.space/",
|
34 |
+
"https://integrate.api.nvidia.com/v1",
|
35 |
+
"http://localhost:8080",
|
36 |
+
]
|
37 |
Informations = """
|
38 |
-text : Texte à resumé
|
39 |
|
|
|
73 |
# "3. Actions prises et suivis incluant les dates et les personnes impliquées. "
|
74 |
# "4. Toute action supplémentaire ou recommandation nécessaire."
|
75 |
)
|
76 |
+
app.add_middleware(
|
77 |
+
CORSMiddleware,
|
78 |
+
allow_origins=origins,
|
79 |
+
allow_credentials=True,
|
80 |
+
allow_methods=["*"],
|
81 |
+
allow_headers=["*"],
|
82 |
+
)
|
83 |
class TextSummary(BaseModel):
|
84 |
prompt:str
|
85 |
|