fix: update OpenAI package version
Browse files- Update OpenAI to version 1.14.0 for ThreadMessage support
- Add explicit version to prevent overrides
- Maintain existing dependency structure
- Update both builder and runtime stages
- Dockerfile +3 -2
Dockerfile
CHANGED
@@ -128,7 +128,8 @@ RUN pip install --no-cache-dir \
|
|
128 |
langchain \
|
129 |
langchain-community \
|
130 |
langchain-core \
|
131 |
-
langchain-openai
|
|
|
132 |
poetry config virtualenvs.create false && \
|
133 |
poetry install --no-dev --no-interaction --no-ansi
|
134 |
|
@@ -190,7 +191,7 @@ RUN apt-get install -y --no-install-recommends \
|
|
190 |
sentencepiece \
|
191 |
tokenizers \
|
192 |
nltk \
|
193 |
-
openai==1.
|
194 |
anthropic==0.23.1 \
|
195 |
flask-migrate==4.0.5 \
|
196 |
Pillow \
|
|
|
128 |
langchain \
|
129 |
langchain-community \
|
130 |
langchain-core \
|
131 |
+
langchain-openai \
|
132 |
+
openai==1.14.0 && \
|
133 |
poetry config virtualenvs.create false && \
|
134 |
poetry install --no-dev --no-interaction --no-ansi
|
135 |
|
|
|
191 |
sentencepiece \
|
192 |
tokenizers \
|
193 |
nltk \
|
194 |
+
openai==1.14.0 \
|
195 |
anthropic==0.23.1 \
|
196 |
flask-migrate==4.0.5 \
|
197 |
Pillow \
|