Skip to content

Commit 86dd27a

Browse files
authored
Merge pull request #243 from FullStackWithLawrence/next
Next
2 parents d17eb38 + 9e5e658 commit 86dd27a

17 files changed

+44
-43
lines changed

.github/actions/merge-branch/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ inputs:
2222
type: string
2323

2424
python-version:
25-
description: "The version of Python to use, such as 3.11.0"
25+
description: "The version of Python to use, such as 3.12"
2626
required: true
2727
type: string
2828

.github/actions/tests/python/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ branding:
88
color: "orange"
99
inputs:
1010
python-version:
11-
description: "The version of Python to use, such as 3.11.0"
11+
description: "The version of Python to use, such as 3.12"
1212
required: true
1313
type: string
1414
openai-api-organization:

.github/workflows/precommitVersionBumps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
- name: Set up Python
5252
uses: actions/setup-python@v5
5353
with:
54-
python-version: "3.11"
54+
python-version: "3.12"
5555

5656
- name: locate site-packages path
5757
shell: bash

.github/workflows/pullRequestController.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ on:
5050
- "./models/**"
5151

5252
env:
53-
python-version: "3.11"
53+
python-version: "3.12"
5454

5555
jobs:
5656
check_for_pending_release:

.github/workflows/semanticVersionBump.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ jobs:
3939
restore-keys: |
4040
${{ runner.os }}-node
4141
42-
- name: Set up Python 3.11
42+
- name: Set up Python 3.12
4343
uses: actions/setup-python@v5
4444
with:
45-
python-version: "3.11"
45+
python-version: "3.12"
4646

4747
- name: Setup Node.js environment
4848
uses: actions/setup-node@v4

.github/workflows/testsPython.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ on:
1515
- next-major
1616

1717
env:
18-
python-version: "3.11"
18+
python-version: "3.12"
1919

2020
jobs:
2121
python-unit-tests:

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
default_language_version:
22
# default language version for each language
3-
python: python3.11
3+
python: python3.12
44
repos:
55
- repo: https://github.com/codespell-project/codespell
66
rev: v2.3.0

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ PINECONE_INDEX_NAME=rag\n\
1919
PINECONE_VECTORSTORE_TEXT_KEY=lc_id\n\
2020
PINECONE_METRIC=dotproduct\n\
2121
PINECONE_DIMENSIONS=1536\n\
22-
OPENAI_CHAT_MODEL_NAME=gpt-3.5-turbo\n\
23-
OPENAI_PROMPT_MODEL_NAME=gpt-3.5-turbo-instruct\n\
22+
OPENAI_CHAT_MODEL_NAME=gpt-4\n\
23+
OPENAI_PROMPT_MODEL_NAME=gpt-4\n\
2424
OPENAI_CHAT_TEMPERATURE=0.0\n\
2525
OPENAI_CHAT_MAX_RETRIES=3\n\
2626
DEBUG_MODE=True\n" >> .env)

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ These are just a few examples of the analytics and accounting courses offered at
122122
- [OpenAI platform API key](https://platform.openai.com/).
123123
_If you're new to OpenAI API then see [How to Get an OpenAI API Key](./doc/OPENAI_API_GETTING_STARTED_GUIDE.md)_
124124
- [Pinecone](https://www.pinecone.io/) API key.
125-
- [Python 3.11](https://www.python.org/downloads/): for creating virtual environment used for building AWS Lambda Layer, and locally by pre-commit linters and code formatters.
125+
- [Python 3.12](https://www.python.org/downloads/): for creating virtual environment used for building AWS Lambda Layer, and locally by pre-commit linters and code formatters.
126126
- [NodeJS](https://nodejs.org/en/download): used with NPM for local ReactJS developer environment, and for configuring/testing Semantic Release.
127127

128128
## Configuration defaults
@@ -134,9 +134,9 @@ Set these as environment variables on the command line, or in a .env file that s
134134
OPENAI_API_ORGANIZATION=PLEASE-ADD-ME
135135
OPENAI_API_KEY=PLEASE-ADD-ME
136136
OPENAI_CHAT_MAX_RETRIES=3
137-
OPENAI_CHAT_MODEL_NAME=gpt-3.5-turbo
137+
OPENAI_CHAT_MODEL_NAME=gpt-4
138138
OPENAI_CHAT_TEMPERATURE=0.0
139-
OPENAI_PROMPT_MODEL_NAME=gpt-3.5-turbo-instruct
139+
OPENAI_PROMPT_MODEL_NAME=gpt-4
140140

141141
# Pinecone API
142142
PINECONE_API_KEY=PLEASE-ADD-ME

models/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# Managed via automated CI/CD in .github/workflows/semanticVersionBump.yml.
2-
__version__ = "1.3.4"
2+
__version__ = "1.3.5"

0 commit comments

Comments
 (0)