We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f3942e commit 65b70a1Copy full SHA for 65b70a1
1 file changed
README.md
@@ -55,6 +55,26 @@ export OPENAI_API_KEY="..."
55
| `endpoint` | `OPENAI_API_ENDPOINT` | `https://api.openai.com` |
56
| `model` | `OPENAI_MODEL` | `gpt-5-mini` |
57
58
+### Use a custom endpoint such as [Exo](https://github.com/exo-explore/exo)
59
+
60
+```console
61
+$ # either:
62
+$ asimov module config openai
63
+Enter value for `api-key`
64
+> doesntmatter
65
+Enter value for `endpoint` (optional, default: `https://api.openai.com`)
66
+> http://localhost:52415
67
+Enter value for `model` (optional, default: `gpt-5-mini`)
68
+> llama-3.2-3b
69
70
+$ # or:
71
+$ export OPENAI_API_ENDPOINT="http://localhost:52415"
72
+$ export OPENAI_MODEL="llama-3.2-3b"
73
74
+$ # then:
75
+$ echo "Why is the sky blue?" | asimov-openai-prompter
76
+```
77
78
## 📚 Reference
79
80
### Prompt
0 commit comments