Skip to content

Commit

Permalink
fix: correct module names; remove empty interpreter agent
Browse files Browse the repository at this point in the history
  • Loading branch information
robilkot committed Nov 10, 2024
1 parent 3b8089c commit b02f625
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 34 deletions.

This file was deleted.

This file was deleted.

10 changes: 1 addition & 9 deletions problem-solver/py/server.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,6 @@
import argparse
import time
from threading import Thread

import sc_kpm
from sc_client.client import create_elements
from sc_client.constants import sc_types
from sc_client.models import ScConstruction
from sc_kpm import ScServer
from modules.fnnProcessingModule.FnnInterpreterModule import FnnInterpreterModule
from modules.fnnProcessingModule.fnnTrainer.FnnTrainingModule import FnnTrainingModule

SC_SERVER_PROTOCOL = "protocol"
Expand All @@ -25,8 +18,7 @@ def main(args: dict):

with server.connect():
modules = [
FnnAgentProcessingModule(),
FnnTrainerProcessingModule()
FnnTrainingModule()
]
server.add_modules(*modules)
with server.register_modules():
Expand Down

0 comments on commit b02f625

Please sign in to comment.