-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathTODO
More file actions
30 lines (23 loc) · 846 Bytes
/
TODO
File metadata and controls
30 lines (23 loc) · 846 Bytes
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
1. OCC Legacy Model should be selected by default.
2. CLI called "occ"
3. Default the .openclaw folder should be open in the file browser.
4. Allow the AI Chat to Execute Commands and Listen for StdOut/StdErr and Adapt based on it.
5. Allow the AI to read openclaw.json and figure out issues with it to fix automatically.
6. Remove Run and Debug, Remote Explorer, Extensions from the activity bar
For my OCC Legacy Model
use this
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
const openrouter = new OpenRouter({
apiKey: "<OPENROUTER_API_KEY>"
});
// Stream the response to get reasoning tokens in usage
const stream = await openrouter.chat.send({
model: "z-ai/glm-4.7-flash",
messages: [
{
role: "user",
content: "How many r's are in the word 'strawberry'?"
}
],
stream: true
});