knox / kotaemon-readme-10.sh
0 likes
0 forks
1 files
Last active
1 | ollama pull llama3.1:8b |
2 | ollama pull nomic-embed-text |
knox / kotaemon-readme-9.sh
0 likes
0 forks
1 files
Last active
1 | AZURE_OPENAI_ENDPOINT= |
2 | AZURE_OPENAI_API_KEY= |
3 | OPENAI_API_VERSION=2024-02-15-preview |
4 | AZURE_OPENAI_CHAT_DEPLOYMENT=gpt-35-turbo |
5 | AZURE_OPENAI_EMBEDDINGS_DEPLOYMENT=text-embedding-ada-002 |
knox / kotaemon-readme-8.sh
0 likes
0 forks
1 files
Last active
1 | OPENAI_API_BASE=https://api.openai.com/v1 |
2 | OPENAI_API_KEY=<your OpenAI API key here> |
3 | OPENAI_CHAT_MODEL=gpt-3.5-turbo |
4 | OPENAI_EMBEDDINGS_MODEL=text-embedding-ada-002 |
knox / kotaemon-readme-7.sh
0 likes
0 forks
1 files
Last active
1 | pip install graphrag future |
knox / kotaemon-readme-6.sh
0 likes
0 forks
1 files
Last active
1 | python app.py |
knox / kotaemon-readme-5.sh
0 likes
0 forks
1 files
Last active
1 | # optional (setup env) |
2 | conda create -n kotaemon python=3.10 |
3 | conda activate kotaemon |
4 | |
5 | # clone this repo |
6 | git clone https://github.com/Cinnamon/kotaemon |
7 | cd kotaemon |
8 | |
9 | pip install -e "libs/kotaemon[all]" |
10 | pip install -e "libs/ktem" |
knox / kotaemon-readme-4.sh
0 likes
0 forks
1 files
Last active
1 | # To run docker with platform linux/arm64 |
2 | docker run \ |
3 | -e GRADIO_SERVER_NAME=0.0.0.0 \ |
4 | -e GRADIO_SERVER_PORT=7860 \ |
5 | -p 7860:7860 -it --rm \ |
6 | --platform linux/arm64 \ |
7 | ghcr.io/cinnamon/kotaemon:main-lite |
knox / kotaemon-readme-3.sh
0 likes
0 forks
1 files
Last active
1 | docker run \ |
2 | -e GRADIO_SERVER_NAME=0.0.0.0 \ |
3 | -e GRADIO_SERVER_PORT=7860 \ |
4 | -p 7860:7860 -it --rm \ |
5 | ghcr.io/cinnamon/kotaemon:main-full |
knox / kotaemon-readme-2.sh
0 likes
0 forks
1 files
Last active
1 | docker run \ |
2 | -e GRADIO_SERVER_NAME=0.0.0.0 \ |
3 | -e GRADIO_SERVER_PORT=7860 \ |
4 | -p 7860:7860 -it --rm \ |
5 | ghcr.io/cinnamon/kotaemon:main-lite |
knox / kotaemon-readme-1.yaml
0 likes
0 forks
1 files
Last active
1 | +----------------------------------------------------------------------------+ |
2 | | End users: Those who use apps built with `kotaemon`. | |
3 | | (You use an app like the one in the demo above) | |
4 | | +----------------------------------------------------------------+ | |
5 | | | Developers: Those who built with `kotaemon`. | | |
6 | | | (You have `import kotaemon` somewhere in your project) | | |
7 | | | +----------------------------------------------------+ | | |
8 | | | | Contributors: Those who make `kotaemon` better. | | | |
9 | | | | (You make PR to this repo) | | | |
10 | | | +----------------------------------------------------+ | | |