Skip to content

Commit

Permalink
Release 0.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
jowilf committed Dec 18, 2023
1 parent 39b9e29 commit 560dcab
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion qwikcrud/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.0.3"
__version__ = "0.0.4"
6 changes: 5 additions & 1 deletion qwikcrud/provider/google.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,17 @@ def __init__(self):
with open(h.path_to("prompts/system")) as f:
system_message = f.read()
self.messages: list[dict[str, Any]] = [
# Workaround for system message
{
"role": "user",
"parts": [system_message],
},
{
"role": "model",
"parts": ["OK"],
"parts": [
"Please provide a brief description of your app and any specific"
" features or functionalities you have in mind."
],
},
]

Expand Down

0 comments on commit 560dcab

Please sign in to comment.