We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 39b9e29 commit 560dcabCopy full SHA for 560dcab
qwikcrud/__init__.py
@@ -1 +1 @@
1
-__version__ = "0.0.3"
+__version__ = "0.0.4"
qwikcrud/provider/google.py
@@ -17,13 +17,17 @@ def __init__(self):
17
with open(h.path_to("prompts/system")) as f:
18
system_message = f.read()
19
self.messages: list[dict[str, Any]] = [
20
+ # Workaround for system message
21
{
22
"role": "user",
23
"parts": [system_message],
24
},
25
26
"role": "model",
- "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
+ ],
31
32
]
33
0 commit comments