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