-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Some progress on docs * Write more docs * Quickstart minor edits * Add doc on changing LLM defaults. * Fix bug with wrong unit-task connections * Update tests cache * Installation and KG interaction docs * add knowledge graph notebook link * Fix image generation * Some more docs * Renam blog with images to nicer caps * Add explorer command to Kuzu demo notebook * Remove duplicate link to knowledge graph docs --------- Co-authored-by: Egor Kraev <[email protected]>
- Loading branch information
1 parent
c796987
commit e0a7622
Showing
83 changed files
with
2,146 additions
and
843 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -86,3 +86,6 @@ dmypy.json | |
*.pyc | ||
|
||
scripts/ | ||
|
||
# docs-related stuff | ||
docs/source/_autosummary |
This file was deleted.
Oops, something went wrong.
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,3 @@ | ||
{ | ||
"path": "../../examples/Using another LLM.ipynb" | ||
} |
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 |
---|---|---|
|
@@ -49,3 +49,4 @@ | |
html_static_path = ["_static"] | ||
|
||
nbsphinx_allow_errors = True | ||
nbsphinx_execute = "never" |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"path": "../../../examples/Blog with Images.ipynb" | ||
} |
This file was deleted.
Oops, something went wrong.
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,3 +1,3 @@ | ||
{ | ||
"path": "../../../examples/Using AutoGen conversations with motleycrew.ipynb" | ||
"path": "../../../examples/Using AutoGen with motleycrew.ipynb" | ||
} |
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,3 +1,3 @@ | ||
{ | ||
"path": "../../../examples/math_single_agent.ipynb" | ||
"path": "../../../examples/Math via python code with a single agent.ipynb" | ||
} |
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 |
---|---|---|
|
@@ -8,6 +8,7 @@ Welcome to motleycrew's documentation! | |
|
||
.. toctree:: | ||
Home <self> | ||
installation | ||
usage | ||
examples | ||
api | ||
|
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,9 +1,38 @@ | ||
Installation | ||
============ | ||
|
||
To use motleycrew, first install it using pip: | ||
Installation using pip | ||
--------------------- | ||
|
||
.. code-block:: console | ||
(.venv) $ pip install motleycrew | ||
pip install motleycrew | ||
Installation from source | ||
------------------------ | ||
| Motleycrew uses Poetry to manage its dependencies. We suggest you use it if you want to install motleycrew from source. | ||
| For installation instructions, see https://python-poetry.org/docs/#installation. | ||
Clone the repository_ and install the dependencies: | ||
|
||
.. code-block:: console | ||
git clone https://github.com/ShoggothAI/motleycrew.git | ||
cd motleycrew | ||
poetry install | ||
This will create a virtual environment and install the required dependencies. | ||
|
||
You might also want to install optional dependencies (extra libraries like LlamaIndex or CrewAI) for additional functionality: | ||
|
||
.. code-block:: console | ||
poetry install --all-extras | ||
If you want to install extra dependencies for development, you can use the following command: | ||
|
||
.. code-block:: console | ||
poetry install --all-extras --with dev | ||
.. _repository: https://github.com/ShoggothAI/motleycrew |
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.