Skip to content

Commit f591ad5

Browse files
committed
Merge branch 'main' into add-dockerfile
2 parents 521ae7b + caf4594 commit f591ad5

7 files changed

Lines changed: 1444 additions & 240 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,7 @@ venv/
109109
ENV/
110110
env.bak/
111111
venv.bak/
112+
openai.env
112113

113114
# Spyder project settings
114115
.spyderproject

intro.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@
372372
"%%ipytest\n",
373373
"\n",
374374
"def solution_sum_two_numbers(a: int, b: int) -> int:\n",
375-
" wrong_sum = a - b\n",
375+
" wrong_sum = a - b -\n",
376376
" return wrong_sum"
377377
]
378378
},
@@ -469,7 +469,7 @@
469469
"name": "python",
470470
"nbconvert_exporter": "python",
471471
"pygments_lexer": "ipython3",
472-
"version": "3.11.3"
472+
"version": "3.10.15"
473473
},
474474
"vscode": {
475475
"interpreter": {

openai.env.example

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
OPENAI_API_KEY="sk-**********" # your OpenAI API key
2+
OPENAI_MODEL="gpt-4o-mini" # the model you want to use
3+
OPENAI_LANGUAGE="English" # the language you want to use

0 commit comments

Comments
 (0)