Skip to content

Commit

Permalink
dotenv remove
Browse files Browse the repository at this point in the history
  • Loading branch information
Kye committed May 29, 2023
1 parent cd1f565 commit ab30dda
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
setup(
name = 'tree-of-thoughts',
packages = find_packages(exclude=[]),
version = '0.2.7',
version = '0.2.8',
license='MIT',
description = 'Tree of Thoughts - Pytorch',
author = 'Kye Gomez',
Expand All @@ -20,8 +20,6 @@
'guidance',
'openai',
'transformers',
'dotenv',
''
],
classifiers=[
'Development Status :: 4 - Beta',
Expand Down
4 changes: 2 additions & 2 deletions tree_of_thoughts/guidanceModels.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
import time
import os
import openai
from dotenv import load_dotenv
load_dotenv()


class GuidanceLanguageModel(AbstractLanguageModel):
def __init__(self, model, strategy="cot", evaluation_strategy="value", enable_ReAct_prompting=False):
# gpt4 = guidance.llms.OpenAI("gpt-4")
Expand Down

0 comments on commit ab30dda

Please sign in to comment.