Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
NishantBorthakur committed Jul 13, 2023
1 parent 39e7af0 commit bbf3080
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gui/pages/Content/Agents/AgentCreate.js
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ export default function AgentCreate({

const handleModelSelect = (index) => {
setLocalStorageValue("agent_model_" + String(internalId), models[index], setModel);
if (models[index] == "google-palm-bison-001") {
if (models[index] === "google-palm-bison-001") {
setAgentType("Action Based")
}
setModelDropdown(false);
Expand Down

0 comments on commit bbf3080

Please sign in to comment.