项目文件夹

文件
Rohit C Prasad 3a9a1de0eb Agentic Helper for daily tasks
An agent harness built on aisuite's agent framework. Adds a coworker engine
with pluggable connectors (browser automation, integration tools), session
management, audit logging, and a permissions model, alongside a desktop GUI
surface (Tauri + React) and a multi-provider model layer with Ollama support.

Co-authored-by: Devika <dr.drp8226@gmail.com>
2026-06-08 20:25:00 -07:00

11 行
308 B
Python

"""PyInstaller entry point for the bundled desktop sidecar server.
Thin wrapper so PyInstaller has a concrete script to analyze (the console_script
`coworker-server` is generated metadata, not a file). Runs the same `main()`.
"""
from coworker.server.run import main
if __name__ == "__main__":
main()