Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
Kye committed Jul 29, 2023
1 parent 04caaa2 commit 22fc173
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions example.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
import os
from tree_of_thoughts.openai_models import OpenAILanguageModel
from tree_of_thoughts.treeofthoughts import MonteCarloTreeofThoughts


api_model= "gpt-3.5-turbo"


model = OpenAILanguageModel(api_key='', api_model=api_model)
api_key = os.getenv("OPENAI_API_KEY")
model = OpenAILanguageModel(api_key=api_key, api_model=api_model)


# Initialize the MonteCarloTreeofThoughts class with the model
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 22fc173

Please sign in to comment.