Skip to content

Commit

Permalink
add dependabot config + start knowledge
Browse files Browse the repository at this point in the history
  • Loading branch information
psyb0t committed Jun 14, 2024
1 parent 9b2b4c1 commit 1102e96
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 2 deletions.
15 changes: 15 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
version: 2
updates:
- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "daily"
open-pull-requests-limit: 5
commit-message:
prefix: "chore"
include: "scope"
assignees:
- "psyb0t"
labels:
- "dependencies"
- "automated pr"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["hatchling", "openai"]
requires = ["hatchling==1.24.2", "openai==1.34.0", "chromadb==0.5.0"]
build-backend = "hatchling.build"

[project]
Expand Down
1 change: 1 addition & 0 deletions src/ezpyai/llm/knowledge.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
import chromadb
2 changes: 1 addition & 1 deletion src/ezpyai/llm/prompt.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@


class Prompt:
_user_message: str = ""
_system_message: str = ""
_context: str = ""
_user_message: str = ""

def __init__(
self,
Expand Down

0 comments on commit 1102e96

Please sign in to comment.