18 lines
350 B
Python
18 lines
350 B
Python
from agent import run_agent
|
|
|
|
def main():
|
|
print("JARVIS gestartet (OpenRouter + MCP)")
|
|
print("Tippe 'exit' zum Beenden\n")
|
|
|
|
while True:
|
|
user = input("Du: ")
|
|
|
|
if user.lower() in ["exit", "quit"]:
|
|
break
|
|
|
|
response = run_agent(user)
|
|
|
|
print("JARVIS:", response)
|
|
|
|
if __name__ == "__main__":
|
|
main() |