Skip to content

Commit

Permalink
Merge pull request TransformerOptimus#279 from TransformerOptimus/fro…
Browse files Browse the repository at this point in the history
…ntend_fixes
  • Loading branch information
nborthy authored Jun 9, 2023
2 parents fbf6619 + fba1277 commit 918587f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gui/pages/Content/Agents/AgentCreate.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export default function AgentCreate({sendAgentData, selectedProjectId, fetchAgen
const toolRef = useRef(null);
const [toolDropdown, setToolDropdown] = useState(false);

const excludedTools = ["ThinkingTool", "LlmThinkingTool", "Human", "ReasoningTool", "CodingTool"];
const excludedTools = ["ThinkingTool", "LlmThinkingTool", "Human", "ReasoningTool"];
const [hasAPIkey, setHasAPIkey] = useState(false);

useEffect(() => {
Expand Down
2 changes: 1 addition & 1 deletion gui/pages/Content/Tools/Tools.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import 'react-toastify/dist/ReactToastify.css';
export default function ToolList({sendToolData, tools}) {
const [filterSelected, setFilter] = useState('all');
const [toolsArray, setTools] = useState(tools);
const excludedTools = ["ThinkingTool", "LlmThinkingTool", "Human", "ReasoningTool", "CodingTool"];
const excludedTools = ["ThinkingTool", "LlmThinkingTool", "Human", "ReasoningTool"];

const handleFilter = (value) => {
setFilter(value)
Expand Down

0 comments on commit 918587f

Please sign in to comment.