|
|
||
|---|---|---|
| .vscode | ||
| __pycache__ | ||
| data | ||
| logs | ||
| outputs | ||
| src | ||
| utils | ||
| .env | ||
| README.md | ||
| image-1.png | ||
| image.png | ||
| main.py | ||
| rename_files.py | ||
| renamed_log.txt | ||
| requirements.txt | ||
README.md
How to debug :
{
"version": "0.2.0",
"configurations": [
{
"name": "Debug rag_pipeline (as module)",
"type": "python",
"request": "launch",
"module": "src.chatbot.rag_pipeline",
"cwd": "${workspaceFolder}",
"envFile": "${workspaceFolder}/.env",
"env": { "PYTHONPATH": "${workspaceFolder}" },
"console": "integratedTerminal",
"justMyCode": true
}
]
}
(launch.json)
uvicorn main:app --port 8386 (--host 0.0.0.0)

Function Calling with google search:
