Skip to content

Commit 7512ab6

Browse files
committed
Changed the location of default prompt.txt
1 parent 7a8f4fd commit 7512ab6

File tree

4 files changed

+3
-2
lines changed

4 files changed

+3
-2
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ dist/
4444
sprintcore.egg-info/
4545
*.yaml
4646
*.md
47+
!prd-flight-booking.md
4748
*.json
4849
index
4950
publish-to-pypi.sh
File renamed without changes.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "sprintcore"
3-
version = "0.1.4"
3+
version = "0.1.5"
44
description = "SprintCore CLI: Convert PRDs into structured sprints. Fix bugs based on bug report"
55
authors = [{ name = "Spicewood Labs LLC", email = "[email protected]" }]
66
readme = "README.md"

sprintcore/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def main():
1313
load_dotenv(dotenv_path='.env', override=True)
1414
OPENAI_API_KEY = os.getenv('OPENAI_API_KEY')
1515
ANTHROPIC_API_KEY = os.getenv('ANTHROPIC_API_KEY')
16-
print(f"OPENAI_API_KEY={OPENAI_API_KEY} ANTHROPIC_API_KEY={ANTHROPIC_API_KEY}")
16+
1717
required_keys = ["OPENAI_API_KEY", "ANTHROPIC_API_KEY"]
1818
missing_key = 0
1919
for key in required_keys:

0 commit comments

Comments
 (0)