Spaces:
Sleeping
Sleeping
Commit
·
31d34d9
1
Parent(s):
6dca9cc
initial setup using uv
Browse files- .python-version +1 -0
- README.md +5 -7
- main.py +6 -0
- pyproject.toml +15 -0
- uv.lock +0 -0
.python-version
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
3.12.10
|
README.md
CHANGED
@@ -1,14 +1,12 @@
|
|
1 |
---
|
2 |
-
title:
|
3 |
-
emoji:
|
4 |
-
colorFrom:
|
5 |
-
colorTo:
|
6 |
sdk: gradio
|
7 |
sdk_version: 5.31.0
|
8 |
-
app_file:
|
9 |
pinned: false
|
10 |
license: mit
|
11 |
short_description: Philosophical AI Experiment
|
12 |
---
|
13 |
-
|
14 |
-
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
1 |
---
|
2 |
+
title: AI Peer Conversation
|
3 |
+
emoji: 🤖
|
4 |
+
colorFrom: red
|
5 |
+
colorTo: yellow
|
6 |
sdk: gradio
|
7 |
sdk_version: 5.31.0
|
8 |
+
app_file: main.py
|
9 |
pinned: false
|
10 |
license: mit
|
11 |
short_description: Philosophical AI Experiment
|
12 |
---
|
|
|
|
main.py
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
def main():
|
2 |
+
print("Hello from ai-peer-conversation!")
|
3 |
+
|
4 |
+
|
5 |
+
if __name__ == "__main__":
|
6 |
+
main()
|
pyproject.toml
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[project]
|
2 |
+
name = "ai-peer-conversation"
|
3 |
+
version = "0.1.0"
|
4 |
+
description = "Add your description here"
|
5 |
+
readme = "README.md"
|
6 |
+
authors = [
|
7 |
+
{ name = "e-hossam96", email = "[email protected]" }
|
8 |
+
]
|
9 |
+
requires-python = ">=3.12.10"
|
10 |
+
dependencies = [
|
11 |
+
"gradio>=5.31.0",
|
12 |
+
"openai>=1.82.0",
|
13 |
+
"pydantic>=2.11.5",
|
14 |
+
"pydantic-settings>=2.9.1",
|
15 |
+
]
|
uv.lock
ADDED
The diff for this file is too large to render.
See raw diff
|
|