mirror of
https://github.com/sahat/hackathon-starter.git
synced 2026-03-28 11:08:30 +00:00
- Added AI integration example featuring Retrieval-Augmented Generation (RAG) along with updates to related documentation, routes, and dependency patches. The new code is in a new ai.js controller, and not in api.js, because most AI integrations are more than just an API call. Other AI related examples that are in api.js controller will be moved to ai.js in the near future. - Added new views for RAG examples (rag.pug and index.pug) and configured corresponding routes in app.js. - Removed legacy navbar code and added an "AI Examples" link in the header. - Updated package dependencies and added patches for LangChain, LangChain MongoDB, and Hugging Face integrations.
61 lines
615 B
Plaintext
61 lines
615 B
Plaintext
lib-cov
|
|
*.seed
|
|
*.log
|
|
*.csv
|
|
*.dat
|
|
*.out
|
|
*.pid
|
|
*.gz
|
|
*.swp
|
|
|
|
pids
|
|
logs
|
|
results
|
|
tmp
|
|
|
|
# Optional npm cache directory
|
|
.npm
|
|
|
|
#Build
|
|
public/css/main.css
|
|
.nyc_output/*
|
|
|
|
# API keys and secrets
|
|
.env
|
|
.env.example
|
|
test/.env.test
|
|
|
|
# Dependency directory
|
|
node_modules
|
|
bower_components
|
|
|
|
# Uploads
|
|
uploads
|
|
|
|
# Ingestion folders
|
|
rag_input
|
|
|
|
# Editors
|
|
.idea
|
|
.vscode
|
|
*.iml
|
|
modules.xml
|
|
*.ipr
|
|
|
|
# Folder config file
|
|
Desktop.ini
|
|
|
|
# Recycle Bin used on file shares
|
|
$RECYCLE.BIN/
|
|
|
|
# OS metadata
|
|
.DS_Store
|
|
Thumbs.db
|
|
.DocumentRevisions-V100
|
|
.fseventsd
|
|
.Spotlight-V100
|
|
.TemporaryItems
|
|
.Trashes
|
|
.VolumeIcon.icns
|
|
.com.apple.timemachine.donotpresent
|