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 +5 -1
Dockerfile
CHANGED
@@ -115,7 +115,11 @@ RUN pip install --no-cache-dir \
|
|
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 |
|
|
|
115 |
google-generativeai \
|
116 |
vertexai \
|
117 |
google-cloud-core \
|
118 |
+
google-api-core \
|
119 |
+
yarl \
|
120 |
+
aiohttp \
|
121 |
+
nvidia-triton-client \
|
122 |
+
tritonclient && \
|
123 |
poetry config virtualenvs.create false && \
|
124 |
poetry install --no-dev --no-interaction --no-ansi
|
125 |
|