Skip to content

Commit

Permalink
update run via makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
bkocis committed Aug 17, 2023
1 parent 296741a commit cf10202
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions chatgptApp/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def message_handler(
queue = Queue()
# let's create our default chat
chat = ChatOpenAI(
model_name=MODELS_NAMES[0],
model_name=MODELS_NAMES[1],
temperature=DEFAULT_TEMPERATURE,
streaming=True,
callbacks=([QueueCallback(queue)]),
Expand Down Expand Up @@ -203,7 +203,7 @@ def main(system_message, human_message_prompt_template):
with gr.Tab("Settings"):
with gr.Column():
model_name = gr.Dropdown(
choices=MODELS_NAMES, value=MODELS_NAMES[0], label="model"
choices=MODELS_NAMES, value=MODELS_NAMES[1], label="model"
)
temperature = gr.Slider(
minimum=0.0,
Expand Down

0 comments on commit cf10202

Please sign in to comment.