Spaces:
Running
Running
Update main.py
Browse files
main.py
CHANGED
@@ -1 +1,23 @@
|
|
1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import re
|
2 |
+
import urllib
|
3 |
+
import json
|
4 |
+
from fastapi import FastAPI, HTTPException, Query
|
5 |
+
from fastapi.middleware.cors import CORSMiddleware
|
6 |
+
|
7 |
+
app = FastAPI()
|
8 |
+
|
9 |
+
# Enable CORS
|
10 |
+
app.add_middleware(
|
11 |
+
CORSMiddleware,
|
12 |
+
allow_origins=["*"],
|
13 |
+
allow_credentials=True,
|
14 |
+
allow_methods=["*"],
|
15 |
+
allow_headers=["*"],
|
16 |
+
)
|
17 |
+
|
18 |
+
|
19 |
+
|
20 |
+
@app.get("/e5_embeddings")
|
21 |
+
def e5_embeddings(query: str = Query(...)):
|
22 |
+
|
23 |
+
return query
|