File tree 1 file changed +29
-0
lines changed
1 file changed +29
-0
lines changed Original file line number Diff line number Diff line change
1
+ # This file lists all the dependencies required for the AI Wrapper for OpenAI Requests project.
2
+ # It ensures consistent environment setup across different development machines and deployment environments.
3
+
4
+ # Core Python Modules
5
+ import os
6
+ import json
7
+
8
+ # Third-Party Packages
9
+ fastapi == 0.115.2
10
+ uvicorn == 0.32.0
11
+ pydantic == 2.9.2
12
+ psycopg2 == 2.9.10
13
+ sqlalchemy == 2.0.36
14
+ pyjwt == 2.9.0
15
+ openai == 1.52.0
16
+ pytest == 8.3.3
17
+ black == 24.10.0
18
+ dotenv == 0.0.5
19
+ zappa == 0.59.0
20
+ structlog == 24.4.0
21
+ sentry-sdk == 2.17.0
22
+
23
+ # Internal Modules
24
+ from .utils.logger import get_logger
25
+ from .core.models.models import RequestBody, ResponseModel
26
+ from .core.services.openai_service import OpenAIService
27
+ from .db.models import User
28
+ from .db.schemas import UserSchema
29
+ from .auth.jwt_handler import create_access_token
You can’t perform that action at this time.
0 commit comments