Skip to content

Commit

Permalink
fix config error
Browse files Browse the repository at this point in the history
  • Loading branch information
areibman committed Sep 18, 2024
1 parent 3226307 commit bf29142
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "spellcaster"
version = "0.0.5"
version = "0.0.6"
authors = [
{ name="Alex Reibman", email="[email protected]" }
]
Expand Down
2 changes: 1 addition & 1 deletion spellcaster/grammar.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def check_grammar(file_path: str, proper_nouns: str, model: str) -> Grammar:


@record_action("validate_reasoning")
def validate_reasoning(text: str, model: str = MODEL) -> bool:
def validate_reasoning(text: str, model: str) -> bool:
"""Validate the reasoning of the provided text."""
resp = litellm.completion(
model=model,
Expand Down

0 comments on commit bf29142

Please sign in to comment.