Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,15 +1,28 @@
|
|
1 |
import os
|
2 |
from fastapi import FastAPI
|
3 |
-
from transformers import
|
4 |
|
5 |
-
|
|
|
|
|
6 |
|
7 |
app = FastAPI()
|
8 |
-
|
9 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
|
11 |
@app.post("/analyze")
|
12 |
async def analyze(code: str):
|
13 |
-
|
14 |
-
|
15 |
-
|
|
|
|
|
|
|
|
1 |
import os
|
2 |
from fastapi import FastAPI
|
3 |
+
from transformers import pipeline
|
4 |
|
5 |
+
# 必须在所有导入前设置环境变量
|
6 |
+
os.environ["HF_HOME"] = "/app/.cache/huggingface"
|
7 |
+
os.environ["TRANSFORMERS_CACHE"] = "/app/.cache/huggingface"
|
8 |
|
9 |
app = FastAPI()
|
10 |
+
|
11 |
+
# 模型加载(带错误处理)
|
12 |
+
try:
|
13 |
+
analyzer = pipeline(
|
14 |
+
"text2text-generation",
|
15 |
+
model="Salesforce/codet5-small",
|
16 |
+
tokenizer="Salesforce/codet5-small"
|
17 |
+
)
|
18 |
+
except Exception as e:
|
19 |
+
raise RuntimeError(f"模型加载失败: {str(e)}")
|
20 |
|
21 |
@app.post("/analyze")
|
22 |
async def analyze(code: str):
|
23 |
+
result = analyzer(
|
24 |
+
f"Analyze code vulnerabilities:\n{code}",
|
25 |
+
max_length=512,
|
26 |
+
num_beams=5
|
27 |
+
)[0]['generated_text']
|
28 |
+
return {"result": result}
|