Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions examples/customer_support_agent/.env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
HIGHFLAME_API_KEY=
LLM_API_KEY=

HIGHFLAME_ROUTE=
MODEL=

LOG_LEVEL=DEBUG
MCP_SERVER_HOST=0.0.0.0
MCP_SERVER_PORT=9000
MCP_SERVER_URL=http://0.0.0.0:9000/mcp
DATABASE_PATH=./src/db/support_agent.db
65 changes: 65 additions & 0 deletions examples/customer_support_agent/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg

# Virtual Environment
venv/
ENV/
env/

# IDE
.vscode/
.idea/
*.swp
*.swo
*~

# Environment variables
.env
.env.local

# Database
*.db
*.sqlite
*.sqlite3

# Logs
*.log
logs/
!logs/.gitkeep
/tmp/

# OS
.DS_Store
Thumbs.db

# Testing
.pytest_cache/
.coverage
htmlcov/
.tox/

# MCP Server logs
/tmp/mcp_server.log

# Temporary files
*.tmp
*.bak
Loading
Loading