Skip to content

Commit

Permalink
fix LLM model typo (#144)
Browse files Browse the repository at this point in the history
  • Loading branch information
MooooCat committed Feb 27, 2024
1 parent ec31560 commit f1241b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdgx/models/LLM/single_table/gpt.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class SingleTableGPTModel(LLMBaseModel):
The maximum time (in seconds) to wait for a response from the OpenAI GPT API. If the response is not received within this time, the request will be timed out.
"""

gpt_model = "Gpt-3.5-turbo-0613"
gpt_model = "gpt-3.5-turbo"
"""
The specific GPT model to be used for generating text. The default model is "gpt-3.5-turbo", which is known for its high performance and versatility.
"""
Expand Down

0 comments on commit f1241b5

Please sign in to comment.