mirror of
https://github.com/Paillat-dev/FABLE.git
synced 2026-01-02 01:06:20 +00:00
Initial commit
This commit is contained in:
25
generators/ideas.py
Normal file
25
generators/ideas.py
Normal file
@@ -0,0 +1,25 @@
|
||||
import openai
|
||||
import os
|
||||
from dotenv import load_dotenv
|
||||
load_dotenv()
|
||||
|
||||
openai.api_key = os.getenv("OPENAI_API_KEY")
|
||||
subject = os.getenv("SUBJECT")
|
||||
with open('prompts/ideas.txt') as f:
|
||||
prompt = f.read().replace('[subject]', subject)
|
||||
f.close()
|
||||
|
||||
|
||||
async def generate_ideas():
|
||||
with open('ideas/ideas.json', 'r') as f:
|
||||
ideas = f.read()
|
||||
f.close()
|
||||
prmpt = prompt.replace('[existing ideas]', ideas)
|
||||
print(prmpt)
|
||||
response = await openai.ChatCompletion.acreate(
|
||||
model="gpt-3.5-turbo",
|
||||
messages=[
|
||||
{"role":"user","content":prmpt},
|
||||
],
|
||||
)
|
||||
return response['choices'][0]['message']['content']
|
||||
Reference in New Issue
Block a user