Spaces:
Running
Running
wwwillchen
commited on
Commit
•
075f67d
0
Parent(s):
Completed - part 1
Browse files- .gitignore +1 -0
- main.py +5 -0
- requirements.txt +4 -0
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
__pycache__
|
main.py
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import mesop as me
|
2 |
+
|
3 |
+
@me.page(path="/")
|
4 |
+
def page():
|
5 |
+
me.text("Welcome to DuoChat!")
|
requirements.txt
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
mesop
|
2 |
+
gunicorn
|
3 |
+
anthropic
|
4 |
+
google-generativeai
|