Skip to content

Commit f0c23bf

Browse files
1 parent 38c6217 commit f0c23bf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def main():
3333
def query(v1, v2, v3):
3434
c = prompt(v1).replace(f'%{v2}%', v3)
3535
try:
36-
res = ᛡopenai.chat.completions.create(model='o1', messages=[{'content': c, 'role': 'user'}])
36+
res = ᛡopenai.chat.completions.create(model='o3-mini', messages=[{'content': c, 'role': 'user'}])
3737
r = res.choices[0].message.content
3838
except openai.BadRequestError:
3939
with open(fp('output/errors.log'), 'a') as f:

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ python main.py > output/negative-keywords.txt
1515
```
1616

1717
### 2.2.
18-
The program uses the OpenAI API, model `o1`.
18+
The program uses the OpenAI API, model `o3-mini`.
1919

2020
### 2.2.
2121
In order for the program to work, an API key is required.

0 commit comments

Comments
 (0)