Spaces:
Runtime error
Runtime error
stevengrove
commited on
Commit
·
0e5afc4
1
Parent(s):
65cfc9d
add requirements
Browse files- app.py +0 -4
- requirements.txt +4 -0
app.py
CHANGED
@@ -1,4 +1,3 @@
|
|
1 |
-
import os
|
2 |
import re
|
3 |
import argparse
|
4 |
|
@@ -6,9 +5,6 @@ import openai
|
|
6 |
import gradio as gr
|
7 |
|
8 |
|
9 |
-
OPENAI_KEY = os.getenv('OPENAI_KEY')
|
10 |
-
|
11 |
-
|
12 |
SYSTEM_PROMPT = """You are a tool for filtering out paragraphs from the interview dialogues given by user.""" # noqa: E501
|
13 |
|
14 |
USER_FORMAT = """Interview Dialogues:
|
|
|
|
|
1 |
import re
|
2 |
import argparse
|
3 |
|
|
|
5 |
import gradio as gr
|
6 |
|
7 |
|
|
|
|
|
|
|
8 |
SYSTEM_PROMPT = """You are a tool for filtering out paragraphs from the interview dialogues given by user.""" # noqa: E501
|
9 |
|
10 |
USER_FORMAT = """Interview Dialogues:
|
requirements.txt
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
requests
|
2 |
+
numpy
|
3 |
+
gradio
|
4 |
+
pillow
|