Skip to content

Commit

Permalink
Update README to point to latest function of LLM text (outlines-dev#447)
Browse files Browse the repository at this point in the history
Updating Readme to point to the correct function
`outlines.generate.text` instead of broken function calls.
  • Loading branch information
immortal3 committed Dec 19, 2023
1 parent 982eaf5 commit 4b39e73
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ import outlines
model = outlines.models.transformers("mistralai/Mistral-7B-v0.1")

prompt = "Is 1+1=2? "
unguided = outlines.generate.continuation(model, max_tokens=30)(prompt)
unguided = outlines.generate.text(model, max_tokens=30)(prompt)
guided = outlines.generate.regex(model, r"\s*([Yy]es|[Nn]o|[Nn]ever|[Aa]lways)", max_tokens=30)(
prompt
)
Expand All @@ -154,7 +154,7 @@ import outlines
model = outlines.models.transformers("mistralai/Mistral-7B-v0.1")

prompt = "What is the IP address of the Google DNS servers? "
unguided = generate.continuation(model, max_tokens=30)(prompt)
unguided = outlines.generate.text(model, max_tokens=30)(prompt)
guided = outlines.generate.regex(
model,
r"((25[0-5]|2[0-4]\d|[01]?\d\d?)\.){3}(25[0-5]|2[0-4]\d|[01]?\d\d?)",
Expand Down Expand Up @@ -350,7 +350,7 @@ def labelling(to_label, examples):

model = outlines.models.transformers("mistralai/Mistral-7B-v0.1")
prompt = labelling("Just awesome", examples)
answer = outlines.generate.continuation(model, max_tokens=100)(prompt)
answer = outlines.generate.text(model, max_tokens=100)(prompt)
```

### Tools
Expand Down

0 comments on commit 4b39e73

Please sign in to comment.