Spaces:
Runtime error
Runtime error
Upload folder using huggingface_hub
Browse files- reasoning/emergent.py +1 -1
- requirements.txt +1 -1
reasoning/emergent.py
CHANGED
@@ -7,7 +7,7 @@ of multiple reasoning strategies and patterns.
|
|
7 |
|
8 |
from typing import Dict, Any, List, Optional
|
9 |
from .base import ReasoningStrategy
|
10 |
-
from .
|
11 |
from .chain_of_thought import ChainOfThoughtStrategy
|
12 |
from .tree_of_thoughts import TreeOfThoughtsStrategy
|
13 |
|
|
|
7 |
|
8 |
from typing import Dict, Any, List, Optional
|
9 |
from .base import ReasoningStrategy
|
10 |
+
from .meta_learning import MetaLearningStrategy
|
11 |
from .chain_of_thought import ChainOfThoughtStrategy
|
12 |
from .tree_of_thoughts import TreeOfThoughtsStrategy
|
13 |
|
requirements.txt
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
fastapi>=0.68.0
|
2 |
uvicorn>=0.15.0
|
3 |
pydantic>=2.0.0
|
4 |
-
gradio>=
|
5 |
llama-cpp-python>=0.2.23
|
6 |
huggingface-hub>=0.19.4
|
7 |
numpy>=1.24.0
|
|
|
1 |
fastapi>=0.68.0
|
2 |
uvicorn>=0.15.0
|
3 |
pydantic>=2.0.0
|
4 |
+
gradio>=4.16.0
|
5 |
llama-cpp-python>=0.2.23
|
6 |
huggingface-hub>=0.19.4
|
7 |
numpy>=1.24.0
|