17 lines
434 B
Python
17 lines
434 B
Python
from .llm_engine import LlmEngine
|
|
|
|
def main():
|
|
"""Main entry point for the SIA application."""
|
|
system_prompt_path = "system_prompt.txt"
|
|
action_schema_path = "action_schema.xsd"
|
|
model_path = "/root/model"
|
|
|
|
with open(system_prompt_path, 'r') as f:
|
|
system_prompt = f.read()
|
|
with open(action_schema_path, 'r') as f:
|
|
action_schema = f.read()
|
|
|
|
print("todo")
|
|
|
|
if __name__ == "__main__":
|
|
main() |