@lobehub/ui 1.29.1 → 1.29.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/Features/Item.js +2 -0
- package/es/Logo/index.js +1 -0
- package/es/types/llm.js +5 -5
- package/package.json +1 -1
package/es/Features/Item.js
CHANGED
|
@@ -8,6 +8,8 @@ import * as LucideIcon from 'lucide-react';
|
|
|
8
8
|
import { memo } from 'react';
|
|
9
9
|
import { Center, Flexbox } from 'react-layout-kit';
|
|
10
10
|
import { useStyles } from "./Item.style";
|
|
11
|
+
|
|
12
|
+
// @ts-ignore
|
|
11
13
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
12
14
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
13
15
|
var Image = /*#__PURE__*/memo(function (_ref) {
|
package/es/Logo/index.js
CHANGED
package/es/types/llm.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* LLM 模型
|
|
3
3
|
*/
|
|
4
|
-
export var LanguageModel
|
|
5
|
-
|
|
6
|
-
// 语言模型的设置参数
|
|
7
|
-
(function (LanguageModel) {
|
|
4
|
+
export var LanguageModel = /*#__PURE__*/function (LanguageModel) {
|
|
8
5
|
LanguageModel["GPT3_5"] = "gpt-3.5-turbo";
|
|
9
6
|
LanguageModel["GPT4"] = "gpt-4";
|
|
10
|
-
|
|
7
|
+
return LanguageModel;
|
|
8
|
+
}({});
|
|
9
|
+
|
|
10
|
+
// 语言模型的设置参数
|