Glama
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Glama
MCP
Servers
privateGPT MCP Server
Claim
by
Fujitsu-AI
GitHub
Knowledge & Memory
Search
Security
JavaScript
MIT License
Reddit
Discord
Overview
Inspect
Schema
Related Servers
Reviews
Score
Need Help?
View Source Code
Report Issue
agents
AgentInterface
Python
agents/AgentInterface/Python/agent.py
agents/AgentInterface/Python/color.py
agents/AgentInterface/Python/config.py
agents/AgentInterface/Python/__init__.py
agents/AgentInterface/Python/language.py
agents/AgentInterface/Python/local_file_handler.py
agents/AgentInterface/Python/network.py
# color.py class Color: HEADER = '\033[95m' OKBLUE = '\033[94m' OKGREEN = '\033[92m' WARNING = '\033[93m' FAIL = '\033[91m' ENDC = '\033[0m' @staticmethod def color_text(text, color): return f"{color}{text}{Color.ENDC}"