Skip to content

Commit 1f3ba38

Browse files
committed
added requirement.txt
1 parent 4dc1fb6 commit 1f3ba38

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

requirements.txt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
fastmcp
2+
httpx
3+
logging
4+
langchain_mcp_adapters
5+
langgraph
6+
langchain_ollama
7+
rich
8+
typer

src/interactive_cli.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"""
55

66
import logging
7+
import platform
78

89
from rich.console import Console
910
from rich.panel import Panel
@@ -12,6 +13,9 @@
1213

1314
from src.mcp_tools_client import MCPToolsClient
1415

16+
if platform.system() != "Windows":
17+
import readline
18+
1519
# This class is used for handling the interative cli session
1620
class InteractiveCLI:
1721
# Initialize various attributes of InteractiveCLI class

0 commit comments

Comments
 (0)