https://github.com/aghoshpro/llmops
Contain all my experiments related to LangChain, Ollama, OpenAI
https://github.com/aghoshpro/llmops
gradio langchain langchainjs langgraph llamaindex ollama rag rag-pipeline
Last synced: about 1 month ago
JSON representation
Contain all my experiments related to LangChain, Ollama, OpenAI
- Host: GitHub
- URL: https://github.com/aghoshpro/llmops
- Owner: aghoshpro
- Created: 2020-09-12T17:11:30.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2025-09-22T17:16:22.000Z (9 months ago)
- Last Synced: 2025-10-01T19:33:39.887Z (9 months ago)
- Topics: gradio, langchain, langchainjs, langgraph, llamaindex, ollama, rag, rag-pipeline
- Language: Jupyter Notebook
- Homepage:
- Size: 59.7 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# LLMOps
## Local Environment Setup
### If `pyproject.toml` file is given then run the following to sync
```sh
uv sync
```
### Else
### Initialize `uv` pkg manager
```sh
uv init
```
### Install venv
```sh
uv venv --python 3.13
```
#### OUTPUT
```
Using CPython 3.13.3
Creating virtual environment at: .venv (ignored by github)
Activate with: .venv\Scripts\activate
```
### Activate venv
```sh
.venv\Scripts\activate
```
### Add pkg
```sh
uv add scipy
```
#### OUTPUT
```
(test_llm) Z:\Git_PhD\test\test_llm>uv add flask
Resolved 9 packages in 164ms
Prepared 3 packages in 122ms
░░░░░░░░░░░░░░░░░░░░ [0/8] Installing wheels...
Installed 2 packages in 2.06s
+ numpy==2.3.2
+ scipy==1.16.1
```
### Add pkgs from `requirements.txt`
```sh
uv add -r requirements.txt
```
## Start experiemnting with `jupyter lab`
```sh
jupyter lab
```