Change
Browse files- app.py +1 -1
- requirements.txt +3 -1
app.py
CHANGED
@@ -42,7 +42,7 @@ model = SentenceTransformer('all-MiniLM-L6-v2')
|
|
42 |
|
43 |
@app.get("/")
|
44 |
async def root():
|
45 |
-
return {"SkillAPI":"SkillAPi Version
|
46 |
|
47 |
db_params = DbConnection.GetDbConnection()
|
48 |
def parse_csv(df):
|
|
|
42 |
|
43 |
@app.get("/")
|
44 |
async def root():
|
45 |
+
return {"SkillAPI":"SkillAPi Version 1.00"}
|
46 |
|
47 |
db_params = DbConnection.GetDbConnection()
|
48 |
def parse_csv(df):
|
requirements.txt
CHANGED
@@ -12,4 +12,6 @@ fastapi
|
|
12 |
uvicorn
|
13 |
python-multipart
|
14 |
docx2txt
|
15 |
-
openai
|
|
|
|
|
|
12 |
uvicorn
|
13 |
python-multipart
|
14 |
docx2txt
|
15 |
+
openai
|
16 |
+
pymysql
|
17 |
+
cryptography
|