Update installation instructions and to remove GitHub and add git.edfast.se

legacy
lasseedfast 7 months ago
parent 2431c667b1
commit 2e370c03ca
  1. 12
      README.md
  2. 6
      setup.py

@ -9,21 +9,21 @@ A Python package for interacting with LLM models through Ollama, supporting both
## Installation
Install directly from GitHub:
Install directly from Git:
```bash
pip install git+https://github.com/lasseedfast/_llm.git
pip install git+https://git.edfast.se/lasse/_llm.git
```
Or clone and install for development:
```bash
git clone https://github.com/lasseedfast/_llm.git
git clone https://git.edfast.se/lasse/_llm.git
cd _llm
pip install -e .
```
Alternatively, after cloning, you can install all dependencies (including those from GitHub) using the provided script:
Alternatively, after cloning, you can install all dependencies (including those from git.edfast.se) using the provided script:
```bash
bash install_deps.sh
@ -33,8 +33,8 @@ bash install_deps.sh
This package requires:
- env_manager: `pip install git+https://github.com/lasseedfast/env_manager.git`
- colorprinter: `pip install git+https://github.com/lasseedfast/colorprinter.git`
- env_manager: `pip install git+https://git.edfast.se/lasse/env_manager.git`
- colorprinter: `pip install git+https://git.edfast.se/lasse/colorprinter.git`
- ollama: For local model inference
- tiktoken: For token counting
- requests: For API communication

@ -13,15 +13,15 @@ setup(
"requests",
"tiktoken",
"ollama",
"env_manager @ git+https://github.com/lasseedfast/env_manager.git",
"colorprinter @ git+https://github.com/lasseedfast/colorprinter.git",
"env_manager @ git+https://git.edfast.se/lasse/env_manager.git",
"colorprinter @ git+https://git.edfast.se/lasse/colorprinter.git",
],
author="Lasse Edfast",
author_email="lasse@edfast.se",
description="A tool for interacting with LLM models",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/lasseedfast/_llm",
url="https://git.edfast.se/lasse/_llm",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",

Loading…
Cancel
Save