Spaces:
No application file
No application file
Commit ·
0efbddf
1
Parent(s): f57b3f7
Files básicos
Browse files- .gitignore +4 -0
- README.md +10 -1
- image.png +0 -0
- requirements.txt +27 -0
.gitignore
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# EddyGiusepe
|
| 2 |
+
venv_OpenAI/
|
| 3 |
+
__pycache__/
|
| 4 |
+
.env
|
README.md
CHANGED
|
@@ -7,4 +7,13 @@ sdk: docker
|
|
| 7 |
pinned: false
|
| 8 |
---
|
| 9 |
|
| 10 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
pinned: false
|
| 8 |
---
|
| 9 |
|
| 10 |
+
# OpenAI com Python
|
| 11 |
+
|
| 12 |
+
### Data Scientist.: Dr.Eddy Giusepe Chirinos Isidro
|
| 13 |
+
|
| 14 |
+

|
| 15 |
+
|
| 16 |
+
|
| 17 |
+
|
| 18 |
+
|
| 19 |
+
Thanks God!
|
image.png
ADDED
|
requirements.txt
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
aiohttp==3.8.4
|
| 2 |
+
aiosignal==1.3.1
|
| 3 |
+
annotated-types==0.5.0
|
| 4 |
+
anyio==3.7.1
|
| 5 |
+
async-timeout==4.0.2
|
| 6 |
+
attrs==23.1.0
|
| 7 |
+
certifi==2023.5.7
|
| 8 |
+
charset-normalizer==3.2.0
|
| 9 |
+
click==8.1.4
|
| 10 |
+
exceptiongroup==1.1.2
|
| 11 |
+
fastapi==0.100.0
|
| 12 |
+
frozenlist==1.3.3
|
| 13 |
+
h11==0.14.0
|
| 14 |
+
idna==3.4
|
| 15 |
+
multidict==6.0.4
|
| 16 |
+
openai==0.27.8
|
| 17 |
+
pydantic==2.0.2
|
| 18 |
+
pydantic_core==2.1.2
|
| 19 |
+
python-dotenv==1.0.0
|
| 20 |
+
requests==2.31.0
|
| 21 |
+
sniffio==1.3.0
|
| 22 |
+
starlette==0.27.0
|
| 23 |
+
tqdm==4.65.0
|
| 24 |
+
typing_extensions==4.7.1
|
| 25 |
+
urllib3==2.0.3
|
| 26 |
+
uvicorn==0.22.0
|
| 27 |
+
yarl==1.9.2
|