-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathagentuity.yaml
More file actions
73 lines (71 loc) · 2.08 KB
/
agentuity.yaml
File metadata and controls
73 lines (71 loc) · 2.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# yaml-language-server: $schema=https://raw.githubusercontent.com/agentuity/cli/refs/heads/main/agentuity.schema.json
# ------------------------------------------------
# This file is generated by Agentuity
# You should check this file into version control
# ------------------------------------------------
# The version semver range required to run this project
version: '>=0.0.105'
# The ID of the project which is automatically generated
project_id: proj_246c5fc8872253197c87679aa42f8e34
# The name of the project which is editable
name: codey
# The description of the project which is editable
description: A sourcecode aware agent
# The development configuration for the project
development:
# The port to run the development server on which can be overridden by setting the PORT environment variable
port: 3500
watch:
# Whether to watch for changes and automatically restart the server
enabled: true
# Rules for files to watch for changes
files:
- src/**
# The command to run the development server
command: bun
# The arguments to pass to the development server
args:
- run
- --silent
- .agentuity/index.js
deployment:
command: bun
args:
- run
- --no-install
- --prefer-offline
- --silent
- --no-macros
- --no-global-search-paths
- --report-uncaught-exception
- --disable-sigusr1
- --disallow-code-generation-from-strings
- --no-addons
- --no-deprecation
- .agentuity/index.js
# You should tune the resources for the deployment
resources:
# The memory requirements
memory: 250Mi
# The CPU requirements
cpu: 500M
# The disk size requirements
disk: 100Mi
# You should not need to change these value
bundler:
enabled: true
identifier: bunjs
language: javascript
runtime: bunjs
agents:
dir: src/agents
ignore:
- node_modules/**
- dist/**
- src/**
# The agents that are part of this project
agents:
- # The ID of the Agent which is automatically generated
id: agent_ed2e9aae20d618ecd49c70f94bd14d3f
# The name of the Agent which is editable
name: controller