Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -41,14 +41,22 @@ iface = gr.Interface(
|
|
41 |
description="Welcome to the CannaAssist AI Assistant. This tool is designed to provide expert guidance on BioTrack and cannabis regulations in New Mexico. DISCLAIMER: This is a proof of concept and not an official product.",
|
42 |
examples=[
|
43 |
["BioTrack", "How do I update inventory quantities in BioTrack?"],
|
|
|
|
|
44 |
["Regulations", "What are the packaging requirements for cannabis products in New Mexico?"],
|
|
|
|
|
45 |
["Best Practices", "What are the benefits of offering delivery service for my dispensary?"],
|
|
|
|
|
|
|
|
|
46 |
["General Question", "What are the key trends in the cannabis industry?"]
|
47 |
],
|
48 |
-
theme=gr.themes.
|
|
|
49 |
)
|
50 |
|
51 |
# Launch the interface with authentication
|
52 |
iface.launch(auth=check_auth)
|
53 |
|
54 |
-
|
|
|
41 |
description="Welcome to the CannaAssist AI Assistant. This tool is designed to provide expert guidance on BioTrack and cannabis regulations in New Mexico. DISCLAIMER: This is a proof of concept and not an official product.",
|
42 |
examples=[
|
43 |
["BioTrack", "How do I update inventory quantities in BioTrack?"],
|
44 |
+
["BioTrack", "What is the process to transfer product between locations in BioTrack?"],
|
45 |
+
["BioTrack", "How can I generate sales reports in BioTrack?"],
|
46 |
["Regulations", "What are the packaging requirements for cannabis products in New Mexico?"],
|
47 |
+
["Regulations", "Can I sell cannabis online in New Mexico?"],
|
48 |
+
["Regulations", "What are the license requirements for opening a dispensary in New Mexico?"],
|
49 |
["Best Practices", "What are the benefits of offering delivery service for my dispensary?"],
|
50 |
+
["Best Practices", "What are best practices for managing inventory?"],
|
51 |
+
["Best Practices", "How can I improve my dispensary's customer service?"],
|
52 |
+
["General Question", "How to increase sales for my dispensary?"],
|
53 |
+
["General Question", "What are the benefits of offering delivery service for my dispensary?"],
|
54 |
["General Question", "What are the key trends in the cannabis industry?"]
|
55 |
],
|
56 |
+
theme=gr.themes.Monochrome(),
|
57 |
+
cache_examples=False # Turn off example caching
|
58 |
)
|
59 |
|
60 |
# Launch the interface with authentication
|
61 |
iface.launch(auth=check_auth)
|
62 |
|
|