diff --git a/README.md b/README.md index a72aa50..53d4f90 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,12 @@ -# ![NextJS](/app/static/repoicon.png) I_Python - -> Python with FastAPI using Postgres & tsvector. Open Source, production ready Python FastAPI/Postgres app. [GitHub](https://github.com/goldlabelapps/python-nx-ai) | [NX-AI onrender](https://nx-ai.onrender.com) - -## I_Python +## ![NX AI](/app/static/repoicon.png) NX AI > Python with FastAPI using Postgres & tsvector. -Open Source, production ready Python FastAPI/Postgres app for [NX](https://goldlabel.pro?s=python-nx-ai) +Open Source, production ready Python FastAPI/Postgres app. [GitHub](https://github.com/goldlabelapps/python-nx-ai) | [NX-AI onrender](https://nx-ai.onrender.com) | [Goldlabel](https://goldlabel.pro?s=python) + +- **Python 3.11+** +- **Postgres** +- **tsvector** - Superfast full-text search (with GIN index) ```sh uvicorn app.main:app --reload @@ -25,13 +25,9 @@ pip install -r requirements.txt uvicorn app.main:app --reload ``` -The API is at . +[localhost](http://localhost:8000) | [onrender](https://nx-ai.onrender.com) -[localhost](http://localhost:8000) | [Public RESTful API](https://nx-ai.onrender.com) -- **Python 3.11+** -- **Postgres** -- **tsvector** - Superfast full-text search (with GIN index) ### Full-Text Search (tsvector) The prospects table includes a `search_vector` column (type: tsvector) that is automatically computed from all text fields on insert. A GIN index is created for this column, enabling fast and scalable full-text search queries. diff --git a/app/__init__.py b/app/__init__.py index c639219..872c070 100644 --- a/app/__init__.py +++ b/app/__init__.py @@ -1,4 +1,4 @@ -"""NX AI - FastAPI/Python/Postgres/tsvector""" +"""NX AI - FastAPI, Python, Postgres, tsvector""" # Current Version -__version__ = "1.2.2" +__version__ = "2.0.0" diff --git a/app/main.py b/app/main.py index a85c3a2..57ff210 100644 --- a/app/main.py +++ b/app/main.py @@ -7,8 +7,8 @@ from app.api.routes import router app = FastAPI( - title="I", - description="Production-ready Python with FastAPI and tsvector", + title="NX AI", + description="NX AI - FastAPI, Python, Postgres, tsvector", version=__version__, )