An open API service indexing awesome lists of open source software.

https://github.com/argosopentech/openai-api-py-lite

OpenAI API Python bindings with no dependencies
https://github.com/argosopentech/openai-api-py-lite

openai python

Last synced: 2 months ago
JSON representation

OpenAI API Python bindings with no dependencies

Awesome Lists containing this project

README

        

# openai-api-py-lite
OpenAI API Python bindings with no dependencies

```
from openaipylite import OpenAILanguageModel

language_model = OpenAILanguageModel('')
res = language_model.infer('To be or not to be?')
print(res['choices'][0]['text'])
```