mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2026-02-23 07:04:24 +01:00
AutoGPT: fix docker entrypoint
This commit is contained in:
@@ -31,8 +31,8 @@ WORKDIR /app
|
||||
COPY pyproject.toml poetry.lock ./
|
||||
|
||||
# Set the entrypoint
|
||||
ENTRYPOINT ["poetry"]
|
||||
CMD ["run", "autogpt", "--install-plugin-deps"]
|
||||
ENTRYPOINT ["poetry", "run", "autogpt", "--install-plugin-deps"]
|
||||
CMD []
|
||||
|
||||
# dev build -> include everything
|
||||
FROM autogpt-base as autogpt-dev
|
||||
|
||||
@@ -106,7 +106,7 @@ OPEN_AI_LANGUAGE_MODELS = {
|
||||
),
|
||||
]
|
||||
}
|
||||
# Copy entries for equivalent models
|
||||
# Copy entries for models with equivalent specs
|
||||
chat_model_mapping = {
|
||||
OpenAIModelName.GPT3: [OpenAIModelName.GPT3_v1, OpenAIModelName.GPT3_v2],
|
||||
OpenAIModelName.GPT3_16k: [OpenAIModelName.GPT3_v2_16k],
|
||||
|
||||
Reference in New Issue
Block a user