7 lines
96 B
Python
7 lines
96 B
Python
import cocalc
|
|
|
|
response = cocalc.Completion.create(
|
|
prompt='hello world'
|
|
)
|
|
|
|
print(response)
|