diff --git a/.github/workflows/aws-preview.yml b/.github/workflows/aws-preview.yml index 17880afad..c8e76f884 100644 --- a/.github/workflows/aws-preview.yml +++ b/.github/workflows/aws-preview.yml @@ -52,7 +52,7 @@ jobs: # Build a docker container and # push it to ECR so that it can # be deployed to ECS. - docker build -t $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG ./core/Dockerfile + docker build -t $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG ./core/ docker push $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG echo "image=$ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG" >> $GITHUB_OUTPUT diff --git a/.github/workflows/aws.yml b/.github/workflows/aws.yml index f96eeb7aa..5af5ac5ba 100644 --- a/.github/workflows/aws.yml +++ b/.github/workflows/aws.yml @@ -51,7 +51,7 @@ jobs: # Build a docker container and # push it to ECR so that it can # be deployed to ECS. - docker build -t $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG ./core/Dockerfile + docker build -t $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG ./core/ docker push $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG echo "image=$ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG" >> $GITHUB_OUTPUT diff --git a/backend/core/llm/openai_functions.py b/backend/core/llm/openai_functions.py index 9d71a4e3b..e2ae58236 100644 --- a/backend/core/llm/openai_functions.py +++ b/backend/core/llm/openai_functions.py @@ -180,7 +180,7 @@ class OpenAIFunctionsBrainPicking(BaseBrainPicking): functions = [ { "name": "get_history_and_context", - "description": "Get the chat history between you and the user and also get the relevant documents to answer the question. Always use that unless a very simple question is asked that a 5 years old could answer or if the user says continue or something like that", + "description": "Get the chat history between you and the user and also get the relevant documents to answer the question. Always use that unless a very simple question is asked that a 5 years old could answer or if the user says continue or something like that.", "parameters": {"type": "object", "properties": {}}, }, ]