dindizz commited on
Commit
326c23b
1 Parent(s): 5fa2fc9

Create requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +12 -0
requirements.txt ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Generating the requirements.txt content based on the provided code.
2
+
3
+ requirements = """
4
+ gradio==3.32.0
5
+ openai==0.27.8
6
+ """
7
+
8
+ # Saving the content to requirements.txt
9
+ with open("/mnt/data/requirements.txt", "w") as f:
10
+ f.write(requirements)
11
+
12
+ "/mnt/data/requirements.txt created with required dependencies"