Yasu777 commited on
Commit
9eae003
·
1 Parent(s): 3176981

Update third.py

Browse files
Files changed (1) hide show
  1. third.py +4 -2
third.py CHANGED
@@ -15,10 +15,10 @@ openai.api_key = os.getenv("OPENAI_API_KEY")
15
  GOOGLE_API_KEY = os.getenv("GOOGLE_API_KEY")
16
  CUSTOM_SEARCH_ENGINE_ID = os.getenv("CUSTOM_SEARCH_ENGINE_ID")
17
 
18
- # 追加: 実行された指示を追跡するリスト
19
  executed_instructions = []
20
 
21
- # 追加: 調査結果を保存するリスト
22
  research_results = []
23
 
24
  async def main(editable_output2, keyword_id):
@@ -118,3 +118,5 @@ async def main(editable_output2, keyword_id):
118
 
119
  # Print the generated message
120
  print(result)
 
 
 
15
  GOOGLE_API_KEY = os.getenv("GOOGLE_API_KEY")
16
  CUSTOM_SEARCH_ENGINE_ID = os.getenv("CUSTOM_SEARCH_ENGINE_ID")
17
 
18
+ # 実行された指示を追跡するリスト
19
  executed_instructions = []
20
 
21
+ # 調査結果を保存するリスト
22
  research_results = []
23
 
24
  async def main(editable_output2, keyword_id):
 
118
 
119
  # Print the generated message
120
  print(result)
121
+
122
+ # 以下、main関数の呼び出しやその他の処理を追加することができます。