-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 937 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 937 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"scripts": {
"start": "uvicorn api:app --host 127.0.0.1 --port 8000 --reload",
"dev": "uvicorn api:app --host 127.0.0.1 --port 8000 --reload --log-level debug",
"production": "uvicorn api:app --host 0.0.0.0 --port 8000",
"install": "pip install -r requirements.txt",
"setup": "./start.sh",
"init-db": "python init_db.py",
"health-check": "python health_check.py",
"doctor": "python health_check.py",
"test-api": "python -c \"import requests; print('API Status:', requests.get('http://127.0.0.1:8000').json())\"",
"test-retrieval": "python retrieval.py",
"src-start": "uvicorn src.app:app --host 127.0.0.1 --port 8001 --reload"
},
"name": "intrabot-ai",
"version": "1.0.0",
"description": "Intrabot-AI - Internal Organization Chatbot with FastAPI",
"main": "api.py",
"keywords": ["fastapi", "ai", "chatbot", "retrieval", "gemini"],
"author": "Your Name",
"license": "MIT"
}