File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ anthropic_client = Anthropic(api_key='your-api-key')
36
36
lp = Limeprompt(
37
37
model_client = anthropic_client,
38
38
model_name = ' claude-3-5-sonnet-20240620' ,
39
- prompt = " Write an email to about " ,
39
+ prompt = " Write an email to <name> about <topic> " ,
40
40
variables = {" name" : " Alice" , " topic" : " limes" },
41
41
output_model = Email,
42
42
max_tokens = 1024 ,
@@ -73,7 +73,7 @@ openai_client = OpenAI(api_key='your-api-key')
73
73
lp = Limeprompt(
74
74
model_client = openai_client,
75
75
model_name = ' gpt-3.5-turbo' ,
76
- prompt = " Write an email to about " ,
76
+ prompt = " Write an email to <name> about <topic> " ,
77
77
variables = {" name" : " Bob" , " topic" : " lemons" },
78
78
output_model = Email,
79
79
max_tokens = 1024 ,
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " limeprompt"
3
- version = " 0.2.2 "
3
+ version = " 0.2.3 "
4
4
description = " Light weight prompting and parsing library for LLM models"
5
5
authors = [" Abbas J <abbas@altair.so>" ]
6
6
license = " MIT"
You can’t perform that action at this time.
0 commit comments