Update README.md to include inference example

Signed-off-by: Andriy Mulyar <andriy.mulyar@gmail.com>
pull/1091/head
Andriy Mulyar 1 year ago committed by GitHub
parent a67f8132e1
commit 390994ea5e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -43,3 +43,29 @@ localhost:80/docs
```
This documentation should match the OpenAI OpenAPI spec located at https://github.com/openai/openai-openapi/blob/master/openapi.yaml
#### Running inference
```python
import openai
openai.api_base = "http://localhost:4891/v1"
openai.api_key = "not needed for a local LLM"
def test_completion():
model = "gpt4all-j-v1.3-groovy"
prompt = "Who is Michael Jordan?"
response = openai.Completion.create(
model=model,
prompt=prompt,
max_tokens=50,
temperature=0.28,
top_p=0.95,
n=1,
echo=True,
stream=False
)
assert len(response['choices'][0]['text']) > len(prompt)
print(response)
```

Loading…
Cancel
Save