mirror of
https://github.com/xtekky/gpt4free.git
synced 2024-11-29 22:34:08 +03:00
13 lines
388 B
Python
13 lines
388 B
Python
|
import phind
|
||
|
|
||
|
prompt = 'hello world'
|
||
|
|
||
|
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)
|
||
|
creative = False,
|
||
|
detailed = False,
|
||
|
codeContext = '') # up to 3000 chars of code
|
||
|
|
||
|
print(result.completion.choices[0].text)
|