Skip to content

Commit

Permalink
ci fail resolve - 2
Browse files Browse the repository at this point in the history
  • Loading branch information
c0sogi committed Aug 22, 2023
1 parent b101843 commit 7ea7b6c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion llama_api/mixins/completion.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class CompletionStatus:
class CompletionMixin:
"""A mixin for modules that support completion generation."""

_completion_status: Optional[defaultdict[str, CompletionStatus]] = None
_completion_status: Optional["defaultdict[str, CompletionStatus]"] = None

@property
def completion_status(self) -> Dict[str, CompletionStatus]:
Expand Down
4 changes: 2 additions & 2 deletions llama_api/shared/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -295,11 +295,11 @@ class Config:
"exllama": GitCloneArgs(
git_path="https://github.com/turboderp/exllama",
disk_path="repositories/exllama",
options=["recurse-submodules"],
options=None,
),
"llama_cpp": GitCloneArgs(
git_path="https://github.com/abetlen/llama-cpp-python",
disk_path="repositories/llama_cpp",
options=None,
options=["--recurse-submodules"],
),
}

0 comments on commit 7ea7b6c

Please sign in to comment.