diff options
author | naa <44613678+naa7@users.noreply.github.com> | 2023-04-28 06:10:34 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-28 06:10:34 +0200 |
commit | 51697d3216a29c143d241d028f8b4102e40246ac (patch) | |
tree | 978f7029944642c6c0c1b5d04ca3b6052ee2c640 /forefront/README.md | |
parent | Update README.md (diff) | |
download | gpt4free-51697d3216a29c143d241d028f8b4102e40246ac.tar gpt4free-51697d3216a29c143d241d028f8b4102e40246ac.tar.gz gpt4free-51697d3216a29c143d241d028f8b4102e40246ac.tar.bz2 gpt4free-51697d3216a29c143d241d028f8b4102e40246ac.tar.lz gpt4free-51697d3216a29c143d241d028f8b4102e40246ac.tar.xz gpt4free-51697d3216a29c143d241d028f8b4102e40246ac.tar.zst gpt4free-51697d3216a29c143d241d028f8b4102e40246ac.zip |
Diffstat (limited to '')
-rw-r--r-- | forefront/README.md | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/forefront/README.md b/forefront/README.md index 5b084af5..a2be8187 100644 --- a/forefront/README.md +++ b/forefront/README.md @@ -4,7 +4,7 @@ import forefront # create an account -token = forefront.Account.create(logging=True) +token = forefront.Account.create(logging=False) print(token) # get a response @@ -12,4 +12,5 @@ for response in forefront.StreamingCompletion.create(token = token, prompt = 'hello world', model='gpt-4'): print(response.completion.choices[0].text, end = '') -```
\ No newline at end of file +print("") +``` |