diff options
author | t.me/xtekky <98614666+xtekky@users.noreply.github.com> | 2023-04-20 11:22:44 +0200 |
---|---|---|
committer | t.me/xtekky <98614666+xtekky@users.noreply.github.com> | 2023-04-20 11:22:44 +0200 |
commit | b2459a5897589d4a60743187a532e1c1d25e63a9 (patch) | |
tree | ef7943c127a1cbb57bba7b7357742aa131149dc9 /README.md | |
parent | add curl_cffi (diff) | |
download | gpt4free-b2459a5897589d4a60743187a532e1c1d25e63a9.tar gpt4free-b2459a5897589d4a60743187a532e1c1d25e63a9.tar.gz gpt4free-b2459a5897589d4a60743187a532e1c1d25e63a9.tar.bz2 gpt4free-b2459a5897589d4a60743187a532e1c1d25e63a9.tar.lz gpt4free-b2459a5897589d4a60743187a532e1c1d25e63a9.tar.xz gpt4free-b2459a5897589d4a60743187a532e1c1d25e63a9.tar.zst gpt4free-b2459a5897589d4a60743187a532e1c1d25e63a9.zip |
Diffstat (limited to '')
-rw-r--r-- | README.md | 19 |
1 files changed, 15 insertions, 4 deletions
@@ -102,16 +102,27 @@ print(response.completion.choices[0].text) ### Example: `phind` (use like openai pypi package) <a name="example-phind"></a> ```python -# HELP WANTED: tls_client does not accept stream and timeout gets hit with long responses - import phind -prompt = 'hello world' +prompt = 'who won the quatar world cup' + +# help needed: not getting newlines from the stream, please submit a PR if you know how to fix this +# stream completion +for result in phind.StreamingCompletion.create( + model = 'gpt-4', + prompt = prompt, + results = phind.Search.create(prompt, actualSearch = True), # create search (set actualSearch to False to disable internet) + creative = False, + detailed = False, + codeContext = ''): # up to 3000 chars of code + + print(result.completion.choices[0].text, end='', flush=True) +# normal completion result = phind.Completion.create( model = 'gpt-4', prompt = prompt, - results = phind.Search.create(prompt, actualSearch = False), # create search (set actualSearch to False to disable internet) + results = phind.Search.create(prompt, actualSearch = True), # create search (set actualSearch to False to disable internet) creative = False, detailed = False, codeContext = '') # up to 3000 chars of code |