Skip to content

Commit 560dcab

Browse files
committed
Release 0.0.4
1 parent 39b9e29 commit 560dcab

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

qwikcrud/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.0.3"
1+
__version__ = "0.0.4"

qwikcrud/provider/google.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,17 @@ def __init__(self):
1717
with open(h.path_to("prompts/system")) as f:
1818
system_message = f.read()
1919
self.messages: list[dict[str, Any]] = [
20+
# Workaround for system message
2021
{
2122
"role": "user",
2223
"parts": [system_message],
2324
},
2425
{
2526
"role": "model",
26-
"parts": ["OK"],
27+
"parts": [
28+
"Please provide a brief description of your app and any specific"
29+
" features or functionalities you have in mind."
30+
],
2731
},
2832
]
2933

0 commit comments

Comments
 (0)