Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -8,12 +8,12 @@ import random
|
|
8 |
client=InferenceClient("Qwen/Qwen2.5-72B-Instruct")
|
9 |
#step 2 form semntic search(read file)
|
10 |
# Open the water_cycle.txt file in read mode with UTF-8 encoding
|
11 |
-
with open("
|
12 |
# Read the entire contents of the file and store it in a variable
|
13 |
-
|
14 |
|
15 |
# Print the text below
|
16 |
-
print(
|
17 |
|
18 |
def respond(message, history):
|
19 |
#responses = ["Yes", "No"]
|
|
|
8 |
client=InferenceClient("Qwen/Qwen2.5-72B-Instruct")
|
9 |
#step 2 form semntic search(read file)
|
10 |
# Open the water_cycle.txt file in read mode with UTF-8 encoding
|
11 |
+
with open("Safe_restaurant", "r", encoding="utf-8") as file:
|
12 |
# Read the entire contents of the file and store it in a variable
|
13 |
+
Safe_restaurant = file.read()
|
14 |
|
15 |
# Print the text below
|
16 |
+
print(Safe_restaurant)
|
17 |
|
18 |
def respond(message, history):
|
19 |
#responses = ["Yes", "No"]
|