Skip to content

Commit 0abbae0

Browse files
fix: resolve ruff line-length violations in examples
1 parent 7206eba commit 0abbae0

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

examples/multi_prompt.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@
88
system.set_main("v2")
99

1010
summarizer.save("Summarise the following text in three bullet points.")
11-
summarizer.save("Summarise the following text in three bullet points. Focus on actionable insights.")
11+
summarizer.save(
12+
"Summarise the following text in three bullet points. Focus on actionable insights."
13+
)
1214
summarizer.set_main("v2")
1315

1416
# List all managed prompts

examples/openai_basic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
# model="gpt-4o",
2929
# messages=[
3030
# {"role": "system", "content": system_prompt},
31-
# {"role": "user", "content": "Summarise the key risks of using LLMs in production."},
31+
# {"role": "user", "content": "Summarise the key risks of LLMs in production."},
3232
# ],
3333
# )
3434
# print(response.choices[0].message.content)

0 commit comments

Comments
 (0)