andrewyng--aisuite
3a9a1de0eb
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>
11 行
308 B
Python
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()
|