Skip to content
Open
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
20 changes: 20 additions & 0 deletions submissions/team3/Team_3/.env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# MetaKGP Bot Configuration
# Copy this to .env and fill in your actual values

# API Keys
GOOGLE_API_KEY="YOUR_API_KEY"
GROQ_API_KEY="YOUR_API_KEY"

# Flask Configuration
FLASK_ENV=development
FLASK_DEBUG=1
FLASK_HOST=127.0.0.1
FLASK_PORT=5000

# Database Configuration
VECTOR_DB_DIR=faiss_index
GRAPH_FILE=metakgp_graph.gml

# Bot Configuration
BOT_TEMPERATURE=0.3
MAX_CONTEXT_TOKENS=2000
111 changes: 111 additions & 0 deletions submissions/team3/Team_3/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,111 @@
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
env/
venv/
ENV/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
pip-wheel-metadata/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# PyCharm
.idea/
*.iml
*.iws
*.ipr

# VS Code
.vscode/
*.code-workspace

# Virtual Environment
venv/
env/
ENV/
.venv

# Environment variables
.env
.env.local
.env.*.local

# Project-specific generated files
all_article_urls.txt
metakgp_data/
faiss_index/
metakgp_graph.gml
results.zip
results/
*.json
temp_*
tempCodeRunnerFile.py

# OS specific
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db

# Testing
.pytest_cache/
.coverage
htmlcov/

# Jupyter Notebook
.ipynb_checkpoints
*.ipynb

# IPython
.ipython_history
.ipykernel/

# mypy
.mypy_cache/
.dmypy.json
dmypy.json

# Pyre type checker
.pyre/

# Logs
*.log
logs/

# API Keys and Secrets (DO NOT COMMIT THESE!)
*.key
*.pem
*.crt
secrets.json
config.json

# IDE temporary files
*.swp
*.swo
*~

# OS temp files
*.tmp
Thumbs.db
.AppleDouble
.LSOverride
360 changes: 360 additions & 0 deletions submissions/team3/Team_3/ARCHITECTURE/ARCHITECTURE.md

Large diffs are not rendered by default.

Loading