Finalized

This commit is contained in:
Firq 2024-12-07 13:25:38 +01:00
parent ef61b926a1
commit 8e131c2847
7 changed files with 10 additions and 5 deletions

2
.gitignore vendored
View file

@ -1,10 +1,12 @@
# env
.env
*venv/
**/__pycache__/
# Binaries for installation
*.deb
*.whl
.install/
# Test data
data/pgvector.sql

BIN
pipeline.indexing.png Normal file

Binary file not shown.

After

(image error) Size: 34 KiB

View file

Before

(image error) Size: 126 KiB

After

(image error) Size: 126 KiB

View file

@ -1,7 +1,9 @@
import pathlib
from gevent.pywsgi import WSGIServer
from flask import Flask, request, render_template
from tabulate import tabulate
from flask import Flask, request, render_template
from wtforms import Form, StringField, SubmitField
from wtforms.validators import DataRequired
@ -47,5 +49,6 @@ def query_backend():
return backend.format_for_api(result)
if __name__ == "__main__":
http_server = WSGIServer(("0.0.0.0", 8000), app)
http_server.serve_forever()

View file

@ -73,7 +73,7 @@
flex-direction: column;
position: relative;
width: 220px;
height: 250px;
height: 275px;
border: 2px solid #b86cff;
margin: 1rem;
justify-items: flex-start;