Skip to content

Commit 33458e7

Browse files
committed
ui working
1 parent 7302bca commit 33458e7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+244
-2650
lines changed

.gitignore

+78
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
# Compiled source #
2+
###################
3+
*.com
4+
*.class
5+
*.dll
6+
*.exe
7+
*.o
8+
*.so
9+
10+
# Packages #
11+
############
12+
# it's better to unpack these files and commit the raw source
13+
# git has its own built in compression methods
14+
*.7z
15+
*.dmg
16+
*.gz
17+
*.iso
18+
*.jar
19+
*.rar
20+
*.tar
21+
*.zip
22+
23+
# Logs and databases #
24+
######################
25+
*.log
26+
*.sql
27+
*.sqlite
28+
29+
# OS generated files #
30+
######################
31+
.DS_Store
32+
.DS_Store?
33+
._*
34+
.Spotlight-V100
35+
.Trashes
36+
ehthumbs.db
37+
Thumbs.db
38+
39+
# IDE and Editor folders #
40+
##########################
41+
.idea/
42+
.vscode/
43+
*.swp
44+
*.swo
45+
*~
46+
47+
# Node.js #
48+
###########
49+
node_modules/
50+
npm-debug.log
51+
52+
# Python #
53+
##########
54+
*.py[cod]
55+
__pycache__/
56+
*.so
57+
58+
# Java #
59+
########
60+
*.class
61+
*.jar
62+
*.war
63+
*.ear
64+
65+
# Gradle #
66+
##########
67+
.gradle
68+
/build/
69+
70+
# Maven #
71+
#########
72+
target/
73+
74+
# Miscellaneous #
75+
#################
76+
*.bak
77+
*.tmp
78+
*.temp
File renamed without changes.

frontend/app/api/agent/route.ts renamed to app/api/agent/route.ts

+10
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,16 @@ Step ${index + 1}:
127127
: ""
128128
}
129129
Determine the immediate next step to take to achieve the goal.
130+
131+
Important guidelines:
132+
1. Break down complex actions into individual atomic steps
133+
2. For ACT commands, use only one action at a time, such as:
134+
- Single click on a specific element
135+
- Type into a single input field
136+
- Select a single option
137+
3. Avoid combining multiple actions in one instruction
138+
4. If multiple actions are needed, they should be separate steps
139+
130140
If the goal has been achieved, return "close".`,
131141
},
132142
];
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)