Compare commits
2 Commits
120a843f33
...
af4b716a74
| Author | SHA1 | Date | |
|---|---|---|---|
| af4b716a74 | |||
| ae5e7dedae |
@@ -1,6 +1,6 @@
|
||||
[ai]
|
||||
provider = "gemini"
|
||||
model = "gemini-2.5-flash-lite"
|
||||
provider = "minimax"
|
||||
model = "MiniMax-M2.5"
|
||||
temperature = 0.0
|
||||
max_tokens = 8192
|
||||
history_trunc_limit = 8000
|
||||
|
||||
@@ -8,6 +8,7 @@ dependencies = [
|
||||
"imgui-bundle",
|
||||
"google-genai",
|
||||
"anthropic",
|
||||
"openai",
|
||||
"tomli-w",
|
||||
"psutil>=7.2.2",
|
||||
"fastapi",
|
||||
|
||||
@@ -166,7 +166,7 @@ def clear_comms_log() -> None:
|
||||
_comms_log.clear()
|
||||
|
||||
def get_credentials_path() -> Path:
|
||||
return Path(os.environ.get("SLOP_CREDENTIALS", "credentials.toml"))
|
||||
return Path(os.environ.get("SLOP_CREDENTIALS", str(Path(__file__).parent.parent / "credentials.toml")))
|
||||
|
||||
def _load_credentials() -> dict[str, Any]:
|
||||
cred_path = get_credentials_path()
|
||||
|
||||
Reference in New Issue
Block a user