start implementation on new architecture
This commit is contained in:
@@ -1,6 +1,4 @@
|
||||
from .agent_core import AgentCore
|
||||
from .llm_engine import LlmEngine
|
||||
from .docker_module import DockerModule
|
||||
|
||||
def main():
|
||||
"""Main entry point for the SIA application."""
|
||||
@@ -13,13 +11,7 @@ def main():
|
||||
with open(action_schema_path, 'r') as f:
|
||||
action_schema = f.read()
|
||||
|
||||
agent_core = AgentCore(
|
||||
system_prompt=f"{system_prompt}{action_schema}",
|
||||
action_schema=action_schema,
|
||||
docker_module=DockerModule(),
|
||||
llm_engine=LlmEngine(model_path=model_path)
|
||||
)
|
||||
agent_core.run_iteration()
|
||||
print("todo")
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
Reference in New Issue
Block a user