File size: 3,841 Bytes
bbef364
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
import { IconExternalLink } from '@tabler/icons-react';
import { useContext, useState, useEffect } from 'react';

import { useTranslation } from 'next-i18next';

import { OllamaModel } from '@/types/ollama';

import HomeContext from '@/pages/api/home/home.context';

export const ModelSelect = () => {
  const { t } = useTranslation('chat');

  function bytesToGB(bytes: number): string {
    return (bytes / 1e9).toFixed(2) + ' GB';
  }

  function timeAgo(date: Date): string {
    const now = new Date();
    const diffInSeconds = Math.floor((now.getTime() - date.getTime()) / 1000);
    const mins = Math.floor(diffInSeconds / 60);
    const hours = Math.floor(mins / 60);
    const days = Math.floor(hours / 24);

    if (days > 0) {
      return `${days} day${days > 1 ? 's' : ''} ago`;
    } else if (hours > 0) {
      return `${hours} hour${hours > 1 ? 's' : ''} ago`;
    } else {
      return `${mins} minute${mins > 1 ? 's' : ''} ago`;
    }
  }

  const {
    state: { selectedConversation, models, defaultModelId },
    handleUpdateConversation,
    dispatch: homeDispatch,
  } = useContext(HomeContext);

  const [selectedModelDetails, setSelectedModelDetails] = useState<{
    size: string;
    modified: string;
  }>({ size: '', modified: '' });

  const handleChange = (e: React.ChangeEvent<HTMLSelectElement>) => {
    selectedConversation &&
      handleUpdateConversation(selectedConversation, {
        key: 'model',
        value: models.find((model) => model.name === e.target.value) as OllamaModel,
      });

    const selectedModel = models.find((model) => model.name === e.target.value);
    if (selectedModel) {
      setSelectedModelDetails({
        size: bytesToGB(selectedModel.size),
        modified: timeAgo(new Date(selectedModel.modified_at)),
      });
    }
  };

  useEffect(() => {
    let model
    if (selectedConversation?.model) {
      model = models.find((m) => m.name === selectedConversation.model.name)
    }

    if (!model) {
      // selectedConversation has model which is not present on the system. Select the first model
      model = models[0]
      selectedConversation && model && handleUpdateConversation(selectedConversation, { key: 'model', value: model });
    }

    if (model) {
      setSelectedModelDetails({
        size: bytesToGB(model.size),
        modified: timeAgo(new Date(model.modified_at)),
      });
    }
  }, [selectedConversation, models]);

  return (
    <div className="flex flex-col">
      <label className="mb-2 text-left text-neutral-700 dark:text-neutral-400">
        {t('Model')}
      </label>
      <div className="w-full rounded-lg border border-neutral-200 bg-transparent pr-2 text-neutral-900 dark:border-neutral-600 dark:text-white">
        <select
          className="w-full bg-transparent p-2"
          placeholder={t('Select a model') || ''}
          value={selectedConversation?.model?.name || defaultModelId}
          onChange={handleChange}
        >
          {models.map((model) => (
            <option
              key={model.name}
              value={model.name}
              className="dark:bg-[#343541] dark:text-white"
            >
              {model.name === defaultModelId
                ? `Default (${model.name})`
                : model.name}
            </option>
          ))}
        </select>
      </div>

      {/* Display additional properties */}
      <div className="mb-2 text-left text-neutral-700 dark:text-neutral-400">
        <p className='mt-2'>
          <span className="mr-16 inline-block">Size:</span>
          <span className="inline-block">{selectedModelDetails.size}</span>
        </p>
        <p>
          <span className="mr-8 inline-block">Modified:</span>
          <span className="inline-block">{selectedModelDetails.modified}</span>
        </p>
      </div>
    </div>
  );
};