fix: add Google AI dependencies
Browse files- Add google-cloud-aiplatform for Vertex AI
- Add google-generativeai for PaLM API
- Add vertexai for Google AI integration
- Add supporting Google Cloud libraries
- Maintain existing dependency structure
- Dockerfile +12 -2
Dockerfile
CHANGED
@@ -110,7 +110,12 @@ RUN pip install --no-cache-dir \
|
|
110 |
Pillow \
|
111 |
opencv-python-headless \
|
112 |
scikit-learn \
|
113 |
-
scipy
|
|
|
|
|
|
|
|
|
|
|
114 |
poetry config virtualenvs.create false && \
|
115 |
poetry install --no-dev --no-interaction --no-ansi
|
116 |
|
@@ -178,7 +183,12 @@ RUN apt-get install -y --no-install-recommends \
|
|
178 |
Pillow \
|
179 |
opencv-python-headless \
|
180 |
scikit-learn \
|
181 |
-
scipy
|
|
|
|
|
|
|
|
|
|
|
182 |
python -m nltk.downloader punkt averaged_perceptron_tagger
|
183 |
|
184 |
# Set up directory structure
|
|
|
110 |
Pillow \
|
111 |
opencv-python-headless \
|
112 |
scikit-learn \
|
113 |
+
scipy \
|
114 |
+
google-cloud-aiplatform \
|
115 |
+
google-generativeai \
|
116 |
+
vertexai \
|
117 |
+
google-cloud-core \
|
118 |
+
google-api-core && \
|
119 |
poetry config virtualenvs.create false && \
|
120 |
poetry install --no-dev --no-interaction --no-ansi
|
121 |
|
|
|
183 |
Pillow \
|
184 |
opencv-python-headless \
|
185 |
scikit-learn \
|
186 |
+
scipy \
|
187 |
+
google-cloud-aiplatform \
|
188 |
+
google-generativeai \
|
189 |
+
vertexai \
|
190 |
+
google-cloud-core \
|
191 |
+
google-api-core && \
|
192 |
python -m nltk.downloader punkt averaged_perceptron_tagger
|
193 |
|
194 |
# Set up directory structure
|