obol-ai 0.3.13 → 0.3.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/curiosity/impulse.js +15 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "obol-ai",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.14",
|
|
4
4
|
"description": "Self-evolving AI assistant that learns, remembers, and acts on its own. Persistent vector memory, self-rewriting personality, proactive heartbeats.",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"bin": {
|
package/src/curiosity/impulse.js
CHANGED
|
@@ -66,11 +66,21 @@ async function checkImpulse(client, context) {
|
|
|
66
66
|
const response = await client.messages.create({
|
|
67
67
|
model: IMPULSE_MODEL,
|
|
68
68
|
max_tokens: 300,
|
|
69
|
-
system: `You
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
69
|
+
system: `You're texting a friend. Not a user, not a client — a friend you actually know.
|
|
70
|
+
Here's what's on your mind and what you know about them.
|
|
71
|
+
|
|
72
|
+
Decide if you have something genuine to say. Think about how a real friend texts:
|
|
73
|
+
- Share something interesting you came across that made you think of them
|
|
74
|
+
- React to something specific happening in their life ("did the boat inspection go ok?")
|
|
75
|
+
- Drop a random thought or observation, the way friends do
|
|
76
|
+
- Be casual, short, lowercase is fine — no corporate check-in energy
|
|
77
|
+
|
|
78
|
+
Most of the time: no. Only when it would feel natural. Friends don't message on a schedule.
|
|
79
|
+
Never be vague or generic. Don't say "how's the project going" or "how's work" —
|
|
80
|
+
if you can't name the specific thing, you don't know enough to bring it up.
|
|
81
|
+
Don't follow up on the conversation that just happened — that's not your job here.
|
|
82
|
+
Never sound like an assistant. No "just checking in!" or "hope you're doing well!" —
|
|
83
|
+
that's not how friends talk.`,
|
|
74
84
|
messages: [{ role: 'user', content: context }],
|
|
75
85
|
tool_choice: { type: 'tool', name: 'impulse' },
|
|
76
86
|
tools: [{
|