- Port 10 missing features from gui.py to gui_2.py: performance
diagnostics, prior session log viewing, token budget visualization,
agent tools config, API hooks server, GUI task queue, discussion
truncation, THINKING/LIVE indicators, event subscriptions, and
session usage tracking
- Persist window visibility state in config.toml
- Fix Gemini cache invalidation by separating discussion history
from cached context (use MD5 hash instead of built-in hash)
- Add cost optimizations: tool output truncation at source, proactive
history trimming at 40%, summary_only support in aggregate.run()
- Add cleanup() for destroying API caches on exit
35 lines
1.3 KiB
TOML
35 lines
1.3 KiB
TOML
[ai]
|
|
provider = "gemini"
|
|
model = "gemini-2.5-flash"
|
|
temperature = 0.6000000238418579
|
|
max_tokens = 12000
|
|
history_trunc_limit = 8000
|
|
system_prompt = "DO NOT EVER make a shell script unless told to. DO NOT EVER make a readme or a file describing your changes unless your are told to. If you have commands I should be entering into the command line or if you have something to explain to me, please just use code blocks or normal text output. DO NOT DO ANYTHING OTHER THAN WHAT YOU WERE TOLD TODO. DO NOT EVER, EVER DO ANYTHING OTHER THAN WHAT YOU WERE TOLD TO DO. IF YOU WANT TO DO OTHER THINGS, SIMPLY SUGGEST THEM, AND THEN I WILL REVIEW YOUR CHANGES, AND MAKE THE DECISION ON HOW TO PROCEED. WHEN WRITING SCRIPTS USE A 120-160 character limit per line. I don't want to see scrunched code.\n"
|
|
|
|
[theme]
|
|
palette = "10x Dark"
|
|
font_path = "C:/Users/Ed/AppData/Local/uv/cache/archive-v0/WSthkYsQ82b_ywV6DkiaJ/pygame_gui/data/FiraCode-Regular.ttf"
|
|
font_size = 18.0
|
|
scale = 1.0
|
|
|
|
[projects]
|
|
paths = [
|
|
"manual_slop.toml",
|
|
"C:/projects/forth/bootslop/bootslop.toml",
|
|
]
|
|
active = "manual_slop.toml"
|
|
|
|
[gui.show_windows]
|
|
Projects = true
|
|
Files = true
|
|
Screenshots = true
|
|
"Discussion History" = true
|
|
Provider = true
|
|
Message = true
|
|
Response = true
|
|
"Tool Calls" = true
|
|
"Comms History" = true
|
|
"System Prompts" = true
|
|
Theme = true
|
|
Diagnostics = true
|