-
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update installation instructions and use requirements.txt
- Loading branch information
Showing
4 changed files
with
21 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,5 @@ | ||
from .interpreter import Interpreter | ||
from .models import models | ||
import sys | ||
|
||
# This is done so when users `import interpreter`, | ||
# they get an instance of interpreter: | ||
# **This is a controversial thing to do,** lets say is wrong and only allows us to have 1 instance | ||
# because perhaps modules ought to behave like modules. | ||
|
||
#sys.modules["r2ai"] = Interpreter() | ||
#sys.modules["r2ai"].VERSION = "0.2.1" | ||
sys.modules["r2ai"].models = models | ||
VERSION = "0.2.2" | ||
VERSION = "0.3.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
rich | ||
inquirer | ||
llama-cpp-python | ||
tokentrim | ||
hugging_face | ||
appdirs |