Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BIGTOP-4292: Add AI assistant page #115

Merged
merged 37 commits into from
Dec 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
3947c1e
chore: Add ai-assistant page
FU-design Nov 26, 2024
79ecd37
chore: Update ai-assistant page
FU-design Nov 26, 2024
0d6aefd
chore: Update ai-assistant page
FU-design Nov 27, 2024
8187d0d
chore: Add api about ai-assistant
FU-design Nov 27, 2024
ce86da6
chore: Add api about ai-assistant
FU-design Nov 27, 2024
d10164d
chore: Add buttonGroup component in common
FU-design Nov 28, 2024
2e47bbc
Merge remote-tracking branch 'origin/main' into bigtop-ui-feature
FU-design Nov 29, 2024
97ad3da
chore: update page about chat-message
FU-design Nov 29, 2024
58b633f
feat: add formatTime util method
FU-design Dec 1, 2024
e371064
feat: add delete and edit thread
FU-design Dec 2, 2024
b156554
refact: update prettierrc
FU-design Dec 2, 2024
ea66cb8
feat: Update locale about ai-assistant
FU-design Dec 2, 2024
136606f
feat: resolve currcurrThread state
FU-design Dec 2, 2024
770188b
refact: Remove invaible code
FU-design Dec 2, 2024
d8c4969
style: Fix layout when multi-layer drawers
FU-design Dec 2, 2024
0457fc3
style: Fix layout when multi-layer drawers
FU-design Dec 2, 2024
9030582
fix: Fix import error
FU-design Dec 2, 2024
59bb144
feat: Add editable model for llmConfig
FU-design Dec 2, 2024
ae535ae
feat: Update locale about ai-assistant
FU-design Dec 2, 2024
0106094
feat: Update locale about common
FU-design Dec 2, 2024
54a982f
refact: revert env
FU-design Dec 2, 2024
4522fb5
fix: fix typos error
FU-design Dec 2, 2024
05cc1cc
fix: remove import error
FU-design Dec 2, 2024
ef40ce0
fix: fix type error
FU-design Dec 2, 2024
135c934
fix: fix type error
FU-design Dec 2, 2024
db079e9
fix: fix type error
FU-design Dec 2, 2024
005cbc0
fix: rename chatMessagesRes to ChatMessagesRes
FU-design Dec 3, 2024
03f6593
fix: fix format code
FU-design Dec 3, 2024
a5580f9
fix: fix format code
FU-design Dec 3, 2024
c80ca79
fix: fix format code
FU-design Dec 3, 2024
9f46ce6
fix: fix format code
FU-design Dec 3, 2024
53eb797
fix: fix pnpm-lock
FU-design Dec 3, 2024
b4acbbc
feat: Change storage way about ai store
FU-design Dec 3, 2024
2a81ef9
refactor: Update store and locale about ai assistant
FU-design Dec 3, 2024
c40a931
fix: fix error
FU-design Dec 3, 2024
378e13c
fix: Fix path error
FU-design Dec 4, 2024
edf3621
fix: Fix path error
FU-design Dec 4, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion bigtop-manager-ui/.prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,9 @@

node_modules
dist
public
public

package.json
pnpm-lock.yaml

**/*.md
25 changes: 13 additions & 12 deletions bigtop-manager-ui/.prettierrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,16 @@
*/

module.exports = {
useTabs: false,
semi: false,
vueIndentScriptAndStyle: true,
singleQuote: true,
quoteProps: 'as-needed',
jsxBracketSameLine: false,
jsxSingleQuote: true,
arrowParens: 'always',
htmlWhitespaceSensitivity: 'strict',
endOfLine: 'lf',
trailingComma: 'none'
}
useTabs: false,
printWidth: 120,
semi: false,
vueIndentScriptAndStyle: true,
singleQuote: true,
quoteProps: 'as-needed',
jsxBracketSameLine: false,
jsxSingleQuote: true,
arrowParens: 'always',
htmlWhitespaceSensitivity: 'strict',
endOfLine: 'lf',
trailingComma: 'none'
}
26 changes: 12 additions & 14 deletions bigtop-manager-ui/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,16 @@

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/logo.svg" />
<!-- <script src="/lodash.min.js"></script> -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Bigtop Manager</title>
</head>

<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/logo.svg" />
<!-- <script src="/lodash.min.js"></script> -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Bigtop Manager</title>
</head>

<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>

</html>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>
2 changes: 1 addition & 1 deletion bigtop-manager-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,4 +65,4 @@
"iOS 7",
"last 3 iOS versions"
]
}
}
Loading
Loading