Spaces:
Sleeping
Sleeping
Update third.py
Browse files
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関数の呼び出しやその他の処理を追加することができます。
|