Skip to content

Commit

Permalink
replaced new gpt-4-turbo with gpt-4
Browse files Browse the repository at this point in the history
  • Loading branch information
ayyubibrahimi committed Nov 8, 2023
1 parent 6fd95b4 commit 7e9ebef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/backend/src/preprocessor.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@


def create_embeddings():
llm = ChatOpenAI(model="gpt-4-1106-preview")
llm = ChatOpenAI(model="gpt-4")

base_embeddings = OpenAIEmbeddings()

Expand Down
2 changes: 1 addition & 1 deletion packages/googlecloud/functions/getanswer/helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def get_dbs():


def create_embeddings():
llm = ChatOpenAI(model="gpt-4-1106-preview")
llm = ChatOpenAI(model="gpt-4")

base_embeddings = OpenAIEmbeddings()

Expand Down

0 comments on commit 7e9ebef

Please sign in to comment.