Skip to content

Commit

Permalink
Merge pull request #562 from dcSpark/paulccari/implement-cron-taks-en…
Browse files Browse the repository at this point in the history
…dpoint

feat: cron tasks
  • Loading branch information
nicarq authored Dec 14, 2024
2 parents e4784bc + 3e70087 commit fc3571a
Show file tree
Hide file tree
Showing 31 changed files with 1,909 additions and 183 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ import { UseFormReturn } from 'react-hook-form';
import { Link } from 'react-router-dom';
import { toast } from 'sonner';

import { CreateToolCodeFormSchema } from '../../../pages/create-tool';
import { useAuth } from '../../../store/auth';
import { actionButtonClassnames } from '../../chat/conversation-footer';
import { CreateToolCodeFormSchema } from '../hooks/use-tool-code';

export function ToolsSelection({
form,
Expand Down
2 changes: 1 addition & 1 deletion apps/shinkai-desktop/src/components/tools/python-tool.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ export default function PythonTool({
onCheckedChange={async () => {
await updateTool({
toolKey: toolKey ?? '',
toolType: 'Deno',
toolType: 'Python',
toolPayload: {} as ShinkaiTool,
isToolEnabled: !isEnabled,
nodeAddress: auth?.node_address ?? '',
Expand Down
Loading

0 comments on commit fc3571a

Please sign in to comment.