Spaces:
Running
Running
suh4s
commited on
Commit
·
f6c5d2c
1
Parent(s):
cd0ddf2
fixed dockerfile
Browse files- .env.example +8 -0
- .gitignore +45 -0
.env.example
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# InsightFlow AI Environment Variables
|
2 |
+
# OpenAI API key
|
3 |
+
# Get from: https://platform.openai.com/api-keys
|
4 |
+
OPENAI_API_KEY=your_openai_api_key_here
|
5 |
+
|
6 |
+
# Tavily API key
|
7 |
+
# Get from: https://tavily.com/
|
8 |
+
TAVILY_API_KEY=your_tavily_api_key_here
|
.gitignore
ADDED
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Environment variables
|
2 |
+
.env
|
3 |
+
|
4 |
+
# Python cache
|
5 |
+
__pycache__/
|
6 |
+
*.py[cod]
|
7 |
+
*$py.class
|
8 |
+
.pytest_cache/
|
9 |
+
.coverage
|
10 |
+
htmlcov/
|
11 |
+
|
12 |
+
# Virtual environment
|
13 |
+
venv/
|
14 |
+
.venv/
|
15 |
+
env/
|
16 |
+
ENV/
|
17 |
+
|
18 |
+
# Distribution / packaging
|
19 |
+
*.egg-info/
|
20 |
+
dist/
|
21 |
+
build/
|
22 |
+
|
23 |
+
# Chainlit local files
|
24 |
+
.chainlit/
|
25 |
+
.chainlit_client/
|
26 |
+
|
27 |
+
# Data directories
|
28 |
+
exports/*
|
29 |
+
!exports/.gitkeep
|
30 |
+
data/*
|
31 |
+
!data/.gitkeep
|
32 |
+
|
33 |
+
# IDE files
|
34 |
+
.idea/
|
35 |
+
.vscode/
|
36 |
+
*.swp
|
37 |
+
*.swo
|
38 |
+
|
39 |
+
# Logs
|
40 |
+
*.log
|
41 |
+
logs/
|
42 |
+
|
43 |
+
# OS files
|
44 |
+
.DS_Store
|
45 |
+
Thumbs.db
|