1
0
Fork 0

Add AI tools

This commit is contained in:
Ethan Reece 2025-07-01 23:49:20 -05:00
parent a78b2b9cf7
commit 9b80f3716a
No known key found for this signature in database
GPG key ID: 03E0DD19D648C768
2 changed files with 38 additions and 0 deletions

View file

@ -58,6 +58,40 @@
nix-your-shell = {
enable = true;
};
codex = {
enable = true;
settings = {
model = "qwen2.5-coder";
provider = "ollama";
providers = {
ollama = {
name = "Ollama";
baseURL = "http://localhost:11434/v1";
envKey = "OLLAMA_API_KEY";
};
};
};
};
aichat = {
enable = true;
settings = {
model = "ollama:qwen2.5-coder:latest";
clients = [
{
type = "openai-compatible";
name = "ollama";
api_base = "http://localhost:11434/v1";
models = [
{
name = "qwen2.5-coder:latest";
supports_function_calling = true;
supports_vision = true;
}
];
}
];
};
};
rbw = {
enable = true;
settings = {

View file

@ -31,10 +31,14 @@
homebrew = {
enable = true;
brews = [
"ollama"
];
casks = [
"tidal"
"orion"
"webex"
"ollama-app"
];
};
}