ForcePilot/src/cli.py

37 lines
1001 B
Python
Raw Normal View History

import os
from dotenv import load_dotenv
from core.history import HistoryManager
from config import Config
from models import select_model
load_dotenv()
if __name__ == "__main__":
config = Config("config/base.yaml")
model = select_model(config)
print(f"[{config.model_provider}:{config.get('model_name', 'default')}] Type 'exit' to quit")
history_manager = HistoryManager()
while True:
message = input("\nUser: ")
if message == "exit":
break
messages = history_manager.add_user(message)
response = model.predict(messages, stream=config.stream)
if config.stream:
content = ""
print(f"AI: ", end='', flush=True)
for chunk in response:
content += chunk.content
print(f"{chunk.content}", end='', flush=True)
print()
else:
content = response.content
print(f"AI: {content}")
history_manager.add_ai(content)