@eminent337/aery 0.1.109 → 0.1.111

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/docs/models.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  Add custom providers and models (Ollama, vLLM, LM Studio, proxies) via `~/.aery/agent/models.json`.
4
4
 
5
+ If you only need a standard OpenAI-compatible endpoint with a custom base URL, model ID, and API key, you can use `/login` -> `Use an API key` -> `Custom OpenAI-compatible` and let aery write the files for you.
6
+
5
7
  ## Table of Contents
6
8
 
7
9
  - [Minimal Example](#minimal-example)
package/docs/providers.md CHANGED
@@ -95,6 +95,16 @@ Store credentials in `~/.aery/agent/auth.json`:
95
95
 
96
96
  The file is created with `0600` permissions (user read/write only). Auth file credentials take priority over environment variables.
97
97
 
98
+ ### Custom OpenAI-compatible setup
99
+
100
+ For OpenAI-compatible endpoints that need a custom base URL and model ID, run `/login`, choose `Use an API key`, then choose `Custom OpenAI-compatible`.
101
+
102
+ Aery saves:
103
+ - provider structure in `~/.aery/agent/models.json`
104
+ - API key in `~/.aery/agent/auth.json`
105
+
106
+ This covers common proxy and self-hosted endpoints without needing the provider extension path.
107
+
98
108
  ### Key Resolution
99
109
 
100
110
  The `key` field supports three formats:
@@ -201,6 +211,8 @@ Or set `GOOGLE_APPLICATION_CREDENTIALS` to a service account key file.
201
211
 
202
212
  ## Custom Providers
203
213
 
214
+ **Via `/login`:** Use the built-in `Custom OpenAI-compatible` flow for endpoints that need `baseUrl + model ID + API key`.
215
+
204
216
  **Via models.json:** Add Ollama, LM Studio, vLLM, or any provider that speaks a supported API (OpenAI Completions, OpenAI Responses, Anthropic Messages, Google Generative AI). See [models.md](models.md).
205
217
 
206
218
  **Via extensions:** For providers that need custom API implementations or OAuth flows, create an extension. See [custom-provider.md](custom-provider.md) and [examples/extensions/custom-provider-gitlab-duo](../examples/extensions/custom-provider-gitlab-duo/).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eminent337/aery",
3
- "version": "0.1.109",
3
+ "version": "0.1.111",
4
4
  "description": "Aery — AI coding agent by Aryee",
5
5
  "type": "module",
6
6
  "aeryConfig": {
@@ -39,8 +39,8 @@
39
39
  "prepublishOnly": "npm run clean && ../../node_modules/.bin/tsgo -p tsconfig.build.json && ../../node_modules/.bin/shx chmod +x dist/cli.js && npm run copy-assets"
40
40
  },
41
41
  "dependencies": {
42
- "@eminent337/aery-ai": "0.67.121",
43
- "@eminent337/aery-core": "0.67.114",
42
+ "@eminent337/aery-ai": "0.67.123",
43
+ "@eminent337/aery-core": "0.67.116",
44
44
  "@eminent337/aery-tui": "0.67.68",
45
45
  "@mariozechner/jiti": "2.6.2",
46
46
  "@silvia-odwyer/photon-node": "^0.3.4",