1
0
Fork 0

Created readme for openaihosted

This commit is contained in:
9fo 2023-04-27 16:12:04 -07:00 committed by GitHub
parent ac92b8a2ad
commit 7c5398e6e1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

10
openaihosted/readme.md Normal file
View file

@ -0,0 +1,10 @@
### Example: `openaihosted`) <a name="example-openaihosted"></a>
```python
# import library
import openaihosted
res = openaihosted.Completion.create(systemprompt="U are ChatGPT", text="What is 4+4", assistantprompt="U are a helpful assistant.")['response']
print(res) ## Responds with the answer
```