File size: 1,939 Bytes
e538a38
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
import { usePubSub } from "create-pubsub/react";
import { useCallback, useEffect, useRef, useState } from "react";
import { settingsPubSub } from "../../../modules/pubSub";

export function useReasoningContent(text: string) {
  const [settings] = usePubSub(settingsPubSub);
  const [thinkingTimeMs, setThinkingTimeMs] = useState(0);
  const startTimeRef = useRef<number | null>(null);

  const initializeTimingIfNeeded = useCallback(() => {
    if (startTimeRef.current === null) {
      startTimeRef.current = Date.now();
    }
  }, []);

  const finalizeThinkingTimeIfNeeded = useCallback(() => {
    if (startTimeRef.current !== null) {
      setThinkingTimeMs(Date.now() - startTimeRef.current);
      startTimeRef.current = null;
    }
  }, []);

  const extractReasoningAndMainContent = useCallback(
    (text: string, startMarker: string, endMarker: string) => {
      if (!text)
        return { reasoningContent: "", mainContent: "", isGenerating: false };

      if (!text.trim().startsWith(startMarker))
        return { reasoningContent: "", mainContent: text, isGenerating: false };

      const endIndex = text.indexOf(endMarker);

      if (endIndex === -1) {
        initializeTimingIfNeeded();
        return {
          reasoningContent: text.slice(startMarker.length),
          mainContent: "",
          isGenerating: true,
        };
      }

      finalizeThinkingTimeIfNeeded();
      return {
        reasoningContent: text.slice(startMarker.length, endIndex),
        mainContent: text.slice(endIndex + endMarker.length),
        isGenerating: false,
      };
    },
    [initializeTimingIfNeeded, finalizeThinkingTimeIfNeeded],
  );

  const result = extractReasoningAndMainContent(
    text,
    settings.reasoningStartMarker,
    settings.reasoningEndMarker,
  );

  useEffect(() => {
    return () => {
      startTimeRef.current = null;
    };
  }, []);

  return {
    ...result,
    thinkingTimeMs,
  };
}