File size: 1,415 Bytes
246d201
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import { useQuery } from "@tanstack/react-query";
import React from "react";
import posthog from "posthog-js";
import { AxiosError } from "axios";
import { DEFAULT_SETTINGS, getLocalStorageSettings } from "#/services/settings";
import OpenHands from "#/api/open-hands";

const getSettingsQueryFn = async () => {
  try {
    const apiSettings = await OpenHands.getSettings();

    if (apiSettings !== null) {
      return {
        LLM_MODEL: apiSettings.llm_model,
        LLM_BASE_URL: apiSettings.llm_base_url,
        AGENT: apiSettings.agent,
        LANGUAGE: apiSettings.language,
        CONFIRMATION_MODE: apiSettings.confirmation_mode,
        SECURITY_ANALYZER: apiSettings.security_analyzer,
        LLM_API_KEY: apiSettings.llm_api_key,
        REMOTE_RUNTIME_RESOURCE_FACTOR:
          apiSettings.remote_runtime_resource_factor,
      };
    }

    return getLocalStorageSettings();
  } catch (error) {
    if (error instanceof AxiosError) {
      if (error.response?.status === 404) {
        return DEFAULT_SETTINGS;
      }
    }

    throw error;
  }
};

export const useSettings = () => {
  const query = useQuery({
    queryKey: ["settings"],
    queryFn: getSettingsQueryFn,
  });

  React.useEffect(() => {
    if (query.data?.LLM_API_KEY) {
      posthog.capture("user_activated");
    }
  }, [query.data?.LLM_API_KEY]);

  return query;
};