Skip to content

Commit 2377d9d

Browse files
committed
docs
1 parent f1f3e6b commit 2377d9d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ anthropic_client = Anthropic(api_key='your-api-key')
3636
lp = Limeprompt(
3737
model_client=anthropic_client,
3838
model_name='claude-3-5-sonnet-20240620',
39-
prompt="Write an email to about ",
39+
prompt="Write an email to <name> about <topic>",
4040
variables={"name": "Alice", "topic": "limes"},
4141
output_model=Email,
4242
max_tokens=1024,
@@ -73,7 +73,7 @@ openai_client = OpenAI(api_key='your-api-key')
7373
lp = Limeprompt(
7474
model_client=openai_client,
7575
model_name='gpt-3.5-turbo',
76-
prompt="Write an email to about ",
76+
prompt="Write an email to <name> about <topic>",
7777
variables={"name": "Bob", "topic": "lemons"},
7878
output_model=Email,
7979
max_tokens=1024,

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "limeprompt"
3-
version = "0.2.2"
3+
version = "0.2.3"
44
description = "Light weight prompting and parsing library for LLM models"
55
authors = ["Abbas J <abbas@altair.so>"]
66
license = "MIT"

0 commit comments

Comments
 (0)