important note + new site (ora.sh)
This commit is contained in:
parent
4cb3214ac6
commit
04577f565c
1 changed files with 39 additions and 0 deletions
39
README.md
39
README.md
|
@ -100,3 +100,42 @@ for response in t3nsor.StreamCompletion.create(
|
|||
|
||||
print(response.completion.choices[0].text)
|
||||
```
|
||||
|
||||
### `ora` (use like openai pypi package)
|
||||
|
||||
example:
|
||||
```
|
||||
# inport ora
|
||||
import ora
|
||||
|
||||
# create model
|
||||
model = ora.CompletionModel.create(
|
||||
system_prompt = 'You are ChatGPT, a large language model trained by OpenAI. Answer as concisely as possible',
|
||||
description = 'ChatGPT Openai Language Model',
|
||||
name = 'gpt-3.5')
|
||||
|
||||
# init conversation (will give you a conversationId)
|
||||
init = ora.Completion.create(
|
||||
model = model,
|
||||
prompt = 'hello world')
|
||||
|
||||
print(init.completion.choices[0].text)
|
||||
|
||||
while True:
|
||||
# pass in conversationId to continue conversation
|
||||
|
||||
prompt = input('>>> ')
|
||||
response = ora.Completion.create(
|
||||
model = model,
|
||||
prompt = prompt,
|
||||
conversationId = init.id)
|
||||
|
||||
print(response.completion.choices[0].text)
|
||||
```
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue