cache improvement (gemini)

This commit is contained in:
2026-02-22 10:09:19 -05:00
parent 7d294da942
commit 4a6721c3be
2 changed files with 40 additions and 8 deletions

View File

@@ -1,6 +1,8 @@
# Manual Slop
An AI coding assistant interface featuring multi-project management, rich discussion history, dynamic tool utilization, and a robust frontend.
Vibe coding.. but more manual
![img](./gallery/python_2026-02-21_23-37-29.png)
This tool is designed to work as an auxiliary assistant that natively interacts with your codebase via PowerShell and MCP-like file tools, supporting both Anthropic and Gemini APIs.
@@ -25,7 +27,19 @@ Features:
* [docs/guide_tools.md](docs/guide_tools.md) for information on the AI tooling capabilities
* [docs/guide_architecture.md](docs/guide_architecture.md) for an in-depth breakdown of the codebase architecture
## Running
## Instructions
Use `uv run gui.py` or `python gui.py` to launch the frontend.
Requires a `credentials.toml` file in the root directory containing `gemini` and `anthropic` API keys.
1. Make a credentials.toml in the immediate directory of your clone:
```toml
[gemini]
api_key = "****"
[anthropic]
api_key = "****"
```
2. Have fun. This is experiemntal slop.
```ps1
uv run .\gui.py
```