A K-NET KnowledgeBase Agent based on Langgraph and Milvus VectorDB.
-
Create and activate a virtual environment
git clone https://github.com/amany9000/k-net.git cd k-net python3 -m venv .venv source .venv/bin/activate
-
Install Langgraph CLI
uv pip install -U "langgraph-cli[inmem]"Note: "inmem" extra(s) are needed to run LangGraph API server in development mode (without requiring Docker installation)
-
Install the dependencies
uv pip install -e . -
Configure environment variables
cp env.example .env
-
Run server
uvx --refresh --from "langgraph-cli[inmem]" --with-editable . langgraph dev --allow-blocking
uvis needed for seamless dependency resolution.- GPT-OSS:20B is the LLM for this Agent, setup in the Configuration here