Spaces:
Runtime error
Runtime error
Commit
·
f277e70
1
Parent(s):
c02b095
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import interpreter
|
2 |
+
|
3 |
+
# Paste your OpenAI API key below.
|
4 |
+
interpreter.api_key = "your_openai_api_key"
|
5 |
+
|
6 |
+
import interpreter
|
7 |
+
|
8 |
+
# Paste your OpenAI API key below.
|
9 |
+
interpreter.api_key = "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"
|
10 |
+
|
11 |
+
interpreter.model = "gpt-3.5-turbo"
|
12 |
+
|
13 |
+
interpreter.auto_run = True
|
14 |
+
|
15 |
+
interpreter.chat()
|