Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -12,7 +12,7 @@ st.title("文章生成支援Chatbot")
|
|
12 |
api_model = os.getenv("OPENAI_API_MODEL")
|
13 |
temperature = os.getenv("OPENAI_API_TEMPERATURE")
|
14 |
|
15 |
-
origin_text = st.sidebar.text_area("
|
16 |
system_prompt = origin_text if origin_text else os.getenv("system_prompt")
|
17 |
print(system_prompt)
|
18 |
|
|
|
12 |
api_model = os.getenv("OPENAI_API_MODEL")
|
13 |
temperature = os.getenv("OPENAI_API_TEMPERATURE")
|
14 |
|
15 |
+
origin_text = st.sidebar.text_area("システムプロンプト入力")
|
16 |
system_prompt = origin_text if origin_text else os.getenv("system_prompt")
|
17 |
print(system_prompt)
|
18 |
|