diff --git a/chat-with-context/demo/postcss.config.js b/chat-with-context/demo/postcss.config.js index 2aa7205..461f3fe 100644 --- a/chat-with-context/demo/postcss.config.js +++ b/chat-with-context/demo/postcss.config.js @@ -1,6 +1,7 @@ export default { plugins: { tailwindcss: {}, + "postcss-nested": {}, autoprefixer: {}, }, }; diff --git a/deploy.sh b/deploy.sh index 28572d8..34109f5 100755 --- a/deploy.sh +++ b/deploy.sh @@ -29,3 +29,6 @@ elif [ "$1" = "likes" ]; then else ssh_cmd "git pull ; podman-compose up --force-recreate -d" fi + +# Fix connectivities issues between api and vectordb... (become podman compose is completly broken) +# podman exec -it api bash diff --git a/packages/expasy-agent/src/expasy_agent/config.py b/packages/expasy-agent/src/expasy_agent/config.py index 00f8f80..bb8e27c 100644 --- a/packages/expasy-agent/src/expasy_agent/config.py +++ b/packages/expasy-agent/src/expasy_agent/config.py @@ -40,7 +40,7 @@ class Settings(BaseSettings): # vectordb_host: str = "vectordb" # vectordb_host: str = "localhost" # NOTE: old hack to fix a bug with podman internal network, can be removed soon - vectordb_host: str = "10.89.0.2" + vectordb_host: str = "10.89.1.2" docs_collection_name: str = "expasy" entities_collection_name: str = "entities"