Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Python - FastAPI, Postgres, tsvector"""

# Current Version
__version__ = "2.2.3"
__version__ = "2.2.4"
3 changes: 1 addition & 2 deletions app/api/prompt/linkedin.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,13 +84,12 @@ def linkedin_prompt_success(payload: dict, api_key: str = Depends(get_api_key))
"meta": make_meta("success", "LinkedIn URL already analysed"),
"data": {
"cached": True,
"id": row[0],
"prompt_id": row[0],
"linkedin_url": linkedin_url,
"prompt": row[1],
"completion": row[2],
"time": row[3].isoformat() if row[3] else None,
"model": row[4],
"record_data": row[5],
},
}

Expand Down
1 change: 1 addition & 0 deletions app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
CORSMiddleware,
allow_origins=[
"http://localhost:1999",
"http://localhost:2027",
"https://goldlabel.pro",
"https://free.goldlabel.pro",
],
Expand Down
Loading