Skip to content

Commit

Permalink
chore: enable running embeddings, passthrough smtp config (#5820)
Browse files Browse the repository at this point in the history
* chore: enable running embeddings, passthrough smtp config

* fix
  • Loading branch information
mikeldking authored Dec 23, 2024
1 parent 3884696 commit 783b66f
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 0 deletions.
2 changes: 2 additions & 0 deletions app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,10 @@
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"dev": "pnpm run dev:server & pnpm run build:static && pnpm run build:relay && vite",
"dev:embeddings": "pnpm run dev:server:embeddings & pnpm run build:static && pnpm run build:relay && vite",
"dev:ui": "pnpm run build:static && pnpm run build:relay && vite",
"dev:server": "source .env && tox r -e phoenix_main -- --dev serve",
"dev:server:embeddings": "source .env && tox r -e phoenix_main -- --dev serve --with-fixture=chatbot",
"dev:server:test": "node ./tests/utils/testServer.mjs",
"dev:server:init": "tox r -e phoenix_main -- --dev serve --with-trace-fixtures=llama_index_rag --with-projects=demo_llama_index --force-fixture-ingestion",
"typecheck": "tsc --noEmit",
Expand Down
2 changes: 2 additions & 0 deletions requirements/dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,5 @@ anthropic
google-generativeai
psycopg[binary,pool]
uvloop; platform_system != 'Windows'
fast-hdbscan
umap-learn
18 changes: 18 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,24 @@ pass_env=
PHOENIX_SQL_DATABASE_SCHEMA
PHOENIX_ENABLE_AUTH
PHOENIX_SECRET
PHOENIX_OAUTH2_GOOGLE_CLIENT_ID
PHOENIX_OAUTH2_GOOGLE_CLIENT_SECRET
PHOENIX_OAUTH2_GOOGLE_OIDC_CONFIG_URL
PHOENIX_OAUTH_GITHUB_CLIENT_ID
PHOENIX_OAUTH_GITHUB_CLIENT_SECRET
PHOENIX_OAUTH2_AUTH0_CLIENT_ID
PHOENIX_OAUTH2_AUTH0_CLIENT_SECRET
PHOENIX_OAUTH2_AUTH0_OIDC_CONFIG_URL
PHOENIX_OAUTH2_AZURE_AD_OIDC_CONFIG_URL
PHOENIX_OAUTH2_AZURE_AD_CLIENT_ID
PHOENIX_OAUTH2_AZURE_AD_CLIENT_SECRET
PHOENIX_OAUTH2_AWS_COGNITO_CLIENT_ID
PHOENIX_OAUTH2_AWS_COGNITO_CLIENT_SECRET
PHOENIX_OAUTH2_AWS_COGNITO_OIDC_CONFIG_URL
PHOENIX_SMTP_HOSTNAME
PHOENIX_SMTP_PORT
PHOENIX_SMTP_USERNAME
PHOENIX_SMTP_PASSWORD
commands_pre =
uv tool install arize-phoenix@. \
--reinstall-package arize-phoenix \
Expand Down

0 comments on commit 783b66f

Please sign in to comment.