Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Development #119

Merged
merged 5 commits into from
Jul 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
github: fractalego
buy_me_a_coffee: fractalego
4 changes: 2 additions & 2 deletions documentation/source/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ The second command starts the audio interface as well as a web server on port 80
Please see the examples in the following chapters.


LLM side (needs a GPU)
LLM side (needs a GPU to be efficient)
----------------------
The second part (LLM side) is a model server for the speech-to-text model, the LLM, the embedding system, and the text-to-speech model.
In order to quickly run the LLM side, you can use the following installation commands:
Expand All @@ -41,7 +41,7 @@ In order to quickly run the LLM side, you can use the following installation com
$ pip install wafl-llm
$ wafl-llm start

which will use the default models and start the server on port 8080.
which will use the default models and start the server on port 8080.

The interface side has a `config.json` file that needs to be filled with the IP address of the LLM side.
The default is localhost.
Expand Down
2 changes: 2 additions & 0 deletions todo.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
* multiple knowledge bases, one for internal facts and one for each indexed paths
* perhaps a way to structure the prompt using <> tags. The memory items need to be distinct.
* use poetry

/* why is the cache not working? The system re-loads the knowledge every time
Expand Down
2 changes: 1 addition & 1 deletion wafl/readers/reader_factory.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@


class ReaderFactory:
_chunk_size = 1000
_chunk_size = 10000
_overlap = 100
_extension_to_reader_dict = {".pdf": PdfReader, ".txt": TextReader}

Expand Down
Loading