deps-managment-and-dotenv #1
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "EndMove/darknet_diaries_llm:deps-managment-and-dotenv"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Add deps managment and dotenv to load env vars
@ -7,3 +7,2 @@
if not os.path.exists(folder_path):
os.makedirs(folder_path)
if __name__ == '__main__':
c'est vraiment nécessaire d'avoir ça dans un fichier qui n'est pas importé par d'autres fichiers? C'est juste un script pas un module
yup pour spécifier que c'est un script "executable"
@ -14,1 +15,3 @@
llm = OpenAI(model="gpt-4", temperature=0, max_tokens=256)
# load .env
load_dotenv()
OPEN_API_KEY = os.getenv('OPEN_API_KEY')
pas nécessaire, llama-index prend déjà la clé API depuis les envvar
pour ceux qui ne passent pas par la :p genre moi ^^
@ -15,0 +17,4 @@
OPEN_API_KEY = os.getenv('OPEN_API_KEY')
# config llm context
llm = OpenAI(model="gpt-4", temperature=0, max_tokens=256, api_key="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")
merci pour la clé gratuite xD
oupss ;')
@ -34,3 +24,1 @@
}
)
documents.append(document)
# TODO split in small functions
no
@phito j'ai up :D
Checkout
From your project repository, check out a new branch and test the changes.