1 Commits

Author SHA1 Message Date
d35ef995a3 bump version to 0.4.0
Some checks failed
Security Scan / security (pull_request) Successful in 42s
Security Scan / dependency-check (pull_request) Successful in 46s
Test Suite / lint (pull_request) Failing after 31s
Test Suite / test (3.11) (pull_request) Successful in 1m28s
Test Suite / build (pull_request) Has been skipped
2025-09-07 16:47:13 -07:00
7 changed files with 86 additions and 7 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 501 KiB

After

Width:  |  Height:  |  Size: 339 KiB

File diff suppressed because one or more lines are too long

1
prompts-raw.ndjson Normal file

File diff suppressed because one or more lines are too long

64
prompts.ndjson Normal file

File diff suppressed because one or more lines are too long

View File

@@ -25,7 +25,7 @@ def main():
"--workers", str(AppSettings.GUNICORN_WORKERS),
"--bind", AppSettings.GUNICORN_BIND,
"--timeout", str(AppSettings.GUNICORN_TIMEOUT),
"--keep-alive", str(AppSettings.GUNICORN_KEEPALIVE),
"--keepalive", str(AppSettings.GUNICORN_KEEPALIVE),
"--access-logfile", "-",
"--error-logfile", "-",
"--log-level", "info",

View File

@@ -72,12 +72,10 @@ class AppSettings:
DEBUG = os.getenv("EMBEDDINGBUDDY_DEBUG", "True").lower() == "true"
HOST = os.getenv("EMBEDDINGBUDDY_HOST", "127.0.0.1")
PORT = int(os.getenv("EMBEDDINGBUDDY_PORT", "8050"))
# Environment Configuration
ENVIRONMENT = os.getenv(
"EMBEDDINGBUDDY_ENV", "development"
) # development, production
ENVIRONMENT = os.getenv("EMBEDDINGBUDDY_ENV", "development") # development, production
# WSGI Server Configuration (for production)
GUNICORN_WORKERS = int(os.getenv("GUNICORN_WORKERS", "4"))
GUNICORN_BIND = os.getenv("GUNICORN_BIND", f"{HOST}:{PORT}")

2
uv.lock generated
View File

@@ -412,7 +412,7 @@ wheels = [
[[package]]
name = "embeddingbuddy"
version = "0.4.0"
version = "0.3.0"
source = { editable = "." }
dependencies = [
{ name = "dash" },