mirror of
https://github.com/agent0ai/agent-zero.git
synced 2026-05-08 01:41:42 +00:00
UI improvements for v0.8.1 (#299)
* ui: updated icons New icons for: - memory settings - browser agent model * ui: katex and copy button fix - Fix copy button appending "Copy" when copying user messages - Fix KaTeX math not displaying properly or at all * ui: drag and drop file attachments Drag and drop fullscreen modal for file attachments in the input message * ui: favicon, fullscreen input qol
This commit is contained in:
parent
1336d5732a
commit
814b8e7dec
13 changed files with 385 additions and 23 deletions
|
|
@ -437,6 +437,25 @@ def convert_out(settings: Settings) -> SettingsOutput:
|
|||
"fields": browser_model_fields,
|
||||
}
|
||||
|
||||
# Memory settings section
|
||||
memory_fields: list[SettingsField] = []
|
||||
memory_fields.append(
|
||||
{
|
||||
"id": "memory_settings",
|
||||
"title": "Memory Settings",
|
||||
"description": "<settings for memory>",
|
||||
"type": "text",
|
||||
"value": "",
|
||||
}
|
||||
)
|
||||
|
||||
memory_section: SettingsSection = {
|
||||
"id": "memory",
|
||||
"title": "Memory Settings",
|
||||
"description": "<settings for memory management here>",
|
||||
"fields": memory_fields,
|
||||
}
|
||||
|
||||
# basic auth section
|
||||
auth_fields: list[SettingsField] = []
|
||||
|
||||
|
|
@ -706,6 +725,7 @@ def convert_out(settings: Settings) -> SettingsOutput:
|
|||
util_model_section,
|
||||
embed_model_section,
|
||||
browser_model_section,
|
||||
memory_section,
|
||||
stt_section,
|
||||
api_keys_section,
|
||||
auth_section,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue