Skip to content

Commit 68da61f

Browse files
Sonnet 3.7. Perplexity Deep Research. Seperate out Agent feedback func. Add thinking opt for Sonnet 3.7 and o-1/0-3 (#51)
1 parent f0184e4 commit 68da61f

Some content is hidden

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

47 files changed

+956
-358
lines changed

bin/aider

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ echo $VERTEXAI_PROJECT $VERTEXAI_LOCATION
77
export OPENAI_API_KEY=$OPENAI_API_KEY
88
export DEEPSEEK_API_KEY=$DEEPSEEK_API_KEY
99

10-
aider --architect --o1-preview --editor-model vertex_ai/claude-3-5-sonnet@20240620
10+
aider --architect --model o3-mini --editor-model vertex_ai/claude-3-5-sonnet@20240620

docs/docs/autonomous-agents.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Currently, we prefer and recommend using Claude 3.5 Sonnet for the 'hard' LLM wh
3232

3333
The autonomous agents always have four function available:
3434

35-
- `Agent_requestFeedback`
35+
- `AgentFeedback_requestFeedback`
3636
- `Agent_completed`
3737
- `Agent_saveMemory`
3838
- `Agent_deleteMemory`

frontend/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@typedai/ui",
3-
"version": "0.7.0",
3+
"version": "0.8.0",
44
"description": "TypedAI platform",
55
"author": "https://themeforest.net/user/srcn, Daniel Campagnoli, TrafficGuard Pty Ltd, and contributors",
66
"license": "https://themeforest.net/licenses/standard",

frontend/src/app/modules/agents/agent/agent-details/agent-details.component.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ export class AgentDetailsComponent implements OnInit {
153153
if (response) {
154154
this.snackBar.open('Agent resumed successfully', 'Close', { duration: 3000 });
155155
this.hilForm.reset();
156-
// Optionally reload or update agent details
156+
this.refreshAgentDetails();
157157
}
158158
});
159159
}
@@ -180,6 +180,7 @@ export class AgentDetailsComponent implements OnInit {
180180
if (response) {
181181
this.snackBar.open('Agent resumed successfully', 'Close', { duration: 3000 });
182182
this.errorForm.reset();
183+
this.refreshAgentDetails();
183184
}
184185
});
185186
}

0 commit comments

Comments
 (0)