dependency from saibo->yeeef
Browse files
EconomicExpertBot.py
CHANGED
|
@@ -1,11 +1,11 @@
|
|
| 1 |
dependencies = [
|
| 2 |
-
{"url": "
|
| 3 |
]
|
| 4 |
from flows import flow_verse
|
| 5 |
flow_verse.sync_dependencies(dependencies)
|
| 6 |
|
| 7 |
-
from flow_modules.
|
| 8 |
|
| 9 |
-
class EconomicExpertBot(
|
| 10 |
def __init__(self, **kwargs):
|
| 11 |
super().__init__(**kwargs)
|
|
|
|
| 1 |
dependencies = [
|
| 2 |
+
{"url": "yeeef/GPT4Flow", "revision": "main"},
|
| 3 |
]
|
| 4 |
from flows import flow_verse
|
| 5 |
flow_verse.sync_dependencies(dependencies)
|
| 6 |
|
| 7 |
+
from flow_modules.yeeef.GPT4Flow import GPT4Flow
|
| 8 |
|
| 9 |
+
class EconomicExpertBot(GPT4Flow):
|
| 10 |
def __init__(self, **kwargs):
|
| 11 |
super().__init__(**kwargs)
|
__init__.py
CHANGED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
from .EconomicExpertBot import EconomicExpertBot
|
__pycache__/EconomicExpertBot.cpython-39.pyc
ADDED
|
Binary file (765 Bytes). View file
|
|
|
__pycache__/__init__.cpython-39.pyc
ADDED
|
Binary file (178 Bytes). View file
|
|
|