Spaces:
Runtime error
Runtime error
Jonny Tran
commited on
Commit
·
58ee1ac
1
Parent(s):
4e37420
latest
Browse files- .gitignore +0 -1
- Dockerfile +0 -3
- app.py +1 -1
- data/questions.txt +27 -0
.gitignore
CHANGED
@@ -8,5 +8,4 @@ venv/
|
|
8 |
.idea/
|
9 |
.vscode/
|
10 |
*.log
|
11 |
-
data/*
|
12 |
!data/.gitkeep
|
|
|
8 |
.idea/
|
9 |
.vscode/
|
10 |
*.log
|
|
|
11 |
!data/.gitkeep
|
Dockerfile
CHANGED
@@ -23,9 +23,6 @@ RUN pip install uv && uv venv .venv && . .venv/bin/activate && uv pip install -r
|
|
23 |
# Copy the rest of the application
|
24 |
COPY . .
|
25 |
|
26 |
-
# Create data directory
|
27 |
-
RUN mkdir -p data
|
28 |
-
|
29 |
# Expose the port the app runs on
|
30 |
EXPOSE 7860
|
31 |
|
|
|
23 |
# Copy the rest of the application
|
24 |
COPY . .
|
25 |
|
|
|
|
|
|
|
26 |
# Expose the port the app runs on
|
27 |
EXPOSE 7860
|
28 |
|
app.py
CHANGED
@@ -62,7 +62,7 @@ async def startup_event():
|
|
62 |
)
|
63 |
|
64 |
# Load documents (adjust path as needed)
|
65 |
-
if os.path.exists("data")
|
66 |
documents = SimpleDirectoryReader("data").load_data()
|
67 |
vet_index = VectorStoreIndex.from_documents(
|
68 |
documents,
|
|
|
62 |
)
|
63 |
|
64 |
# Load documents (adjust path as needed)
|
65 |
+
if os.path.exists("data"):
|
66 |
documents = SimpleDirectoryReader("data").load_data()
|
67 |
vet_index = VectorStoreIndex.from_documents(
|
68 |
documents,
|
data/questions.txt
ADDED
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Swelling or Lumps:
|
2 |
+
Did you notice any pain or sensitivity when you touch the swollen area?
|
3 |
+
|
4 |
+
Is the swelling warm to the touch or firm?
|
5 |
+
|
6 |
+
Have you noticed the lump growing in size over time?
|
7 |
+
|
8 |
+
Is your dog having any difficulty moving or discomfort near the area of
|
9 |
+
the swelling?
|
10 |
+
|
11 |
+
Skin Irritation or Redness:
|
12 |
+
Is your dog scratching or licking the affected area frequently?
|
13 |
+
|
14 |
+
How long have you noticed the redness on your dog’s skin?
|
15 |
+
|
16 |
+
Has your dog’s skin condition changed recently (more redness,
|
17 |
+
swelling, etc.)?
|
18 |
+
|
19 |
+
Are there any other signs of irritation, such as hair loss around the area?
|
20 |
+
Behavioral Concerns (e.g., Lethargy):
|
21 |
+
Has your dog’s energy level decreased noticeably?
|
22 |
+
|
23 |
+
Are there any changes in your dog’s daily behavior or routine?
|
24 |
+
|
25 |
+
Does your dog seem uninterested in their favorite activities or toys?
|
26 |
+
|
27 |
+
How long have you noticed the behavioral changes in your dog?
|