DarshanScripts commited on
Commit
1d1bddb
·
verified ·
1 Parent(s): 10a4c02

Upload stratego\__init__.py with huggingface_hub

Browse files
Files changed (1) hide show
  1. stratego//__init__.py +11 -0
stratego//__init__.py ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """
2
+ Stratego AI Game Package
3
+ """
4
+
5
+ from stratego.prompt_manager import PromptManager
6
+ from stratego.game_analyzer import analyze_and_update_prompt
7
+
8
+ __all__ = [
9
+ "PromptManager",
10
+ "analyze_and_update_prompt"
11
+ ]