You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
where 192.168.1.10 is example of endpoint URL, where you have ollama set up.
88
+
79
89
### Flags
80
90
81
91
There are multiple optional flags that can be used with the `oco` command:
82
92
83
93
#### Use Full GitMoji Specification
84
94
95
+
Link to the GitMoji specification: https://gitmoji.dev/
96
+
85
97
This flag can only be used if the `OCO_EMOJI` configuration item is set to `true`. This flag allows users to use all emojis in the GitMoji specification, By default, the GitMoji full specification is set to `false`, which only includes 10 emojis (🐛✨📝🚀✅♻️⬆️🔧🌐💡).
86
98
This is due to limit the number of tokens sent in each request. However, if you would like to use the full GitMoji specification, you can use the `--fgm` flag.
87
99
@@ -125,7 +137,7 @@ Local config still has more priority than Global config, but you may set `OCO_MO
125
137
Simply set any of the variables above like this:
126
138
127
139
```sh
128
-
oco config set OCO_MODEL=gpt-4
140
+
oco config set OCO_MODEL=gpt-4o
129
141
```
130
142
131
143
Configure [GitMoji](https://gitmoji.dev/) to preface a message.
@@ -142,7 +154,7 @@ oco config set OCO_EMOJI=false
142
154
143
155
### Switch to GPT-4 or other models
144
156
145
-
By default, OpenCommit uses `gpt-3.5-turbo` model.
157
+
By default, OpenCommit uses `gpt-4o` model.
146
158
147
159
You may switch to GPT-4 which performs better, but costs ~x15 times more 🤠
148
160
@@ -153,17 +165,9 @@ oco config set OCO_MODEL=gpt-4
153
165
or for as a cheaper option:
154
166
155
167
```sh
156
-
oco config set OCO_MODEL=gpt-3.5-turbo
168
+
oco config set OCO_MODEL=gpt-4o-mini
157
169
```
158
170
159
-
or for GPT-4 Turbo (Preview) which is more capable, has knowledge of world events up to April 2023, a 128k context window and 2-3x cheaper vs GPT-4:
160
-
161
-
```sh
162
-
oco config set OCO_MODEL=gpt-4-0125-preview
163
-
```
164
-
165
-
Make sure that you spell it `gpt-4` (lowercase) and that you have API access to the 4th model. Even if you have ChatGPT+, that doesn't necessarily mean that you have API access to GPT-4.
166
-
167
171
### Switch to Azure OpenAI
168
172
169
173
By default OpenCommit uses [OpenAI](https://openai.com).
0 commit comments