50 lines
1.2 KiB
TOML
50 lines
1.2 KiB
TOML
name: UncensoredAgent
|
|
options:
|
|
bundleIdPrefix: ai.venice.uncensoredagent
|
|
deploymentTarget:
|
|
macOS: 12.0
|
|
schemes:
|
|
UncensoredAgent:
|
|
build:
|
|
targets:
|
|
UncensoredAgent: all
|
|
CommandLineAgent: all
|
|
CommandLineAgent:
|
|
build:
|
|
targets:
|
|
CommandLineAgent: all
|
|
targets:
|
|
UncensoredAgent:
|
|
type: application
|
|
platform: macOS
|
|
sources:
|
|
- Sources/UncensoredAgentApp
|
|
settings:
|
|
base:
|
|
PRODUCT_BUNDLE_IDENTIFIER: ai.venice.uncensoredagent.app
|
|
INFOPLIST_FILE: UncensoredAgent/Info.plist
|
|
CODE_SIGN_IDENTITY: ""
|
|
CODE_SIGNING_REQUIRED: NO
|
|
dependencies:
|
|
- target: AgentCore
|
|
info:
|
|
path: UncensoredAgent/Info.plist
|
|
properties:
|
|
CFBundleDisplayName: Uncensored Agent
|
|
CFBundleName: UncensoredAgent
|
|
CFBundleShortVersionString: 1.0
|
|
CFBundleVersion: 1
|
|
NSPrincipalClass: NSApplication # For macOS app
|
|
CommandLineAgent:
|
|
type: executable
|
|
platform: macOS
|
|
sources:
|
|
- Sources/CommandLineAgent
|
|
dependencies:
|
|
- target: AgentCore
|
|
AgentCore:
|
|
type: framework
|
|
platform: macOS
|
|
sources:
|
|
- Sources/AgentCore # Shared agent logic
|