Spaces:
Configuration error
Configuration error
Upload stratego/__init__.py with huggingface_hub
Browse files- 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 |
+
]
|