You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: blog/2025-01-04-building-an-ai-agent-from-scratch-that-can-post-on-bluesky.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -39,10 +39,10 @@ This is the workflow we are looking at:
39
39
1. I send a message to my Telegram bot with the idea of what I want to post on Bluesky.
40
40
2. That message gets processed by my fine-tune agent, which runs locally.
41
41
3. That message is used to extract further context either from:
42
-
1. OpenBB if financial information is needed
43
-
2. xAI if latest news from social media is needed
44
-
3. Perplexity if more information from the web is necessary
45
-
4. The agent then writes a thought on the topic
42
+
1. OpenBB if financial information is needed.
43
+
2. xAI if latest news from social media is needed.
44
+
3. Perplexity if more information from the web is necessary.
45
+
4. The agent then writes a thought on the topic.
46
46
5. Then it pushes that post to Bluesky.
47
47
48
48
## Getting Started
@@ -249,7 +249,7 @@ The only additional things I added afterwards for a better user experience were:
249
249
250
250
### 3. Agent brain
251
251
252
-
I had used Ollama and `Llama3.2:latest` previously, and knew how easy it was to call the model. So I didn't bother spending time testing it up in advance.
252
+
I have used Ollama and `Llama3.2:latest` previously, and knew how easy it was to call the model. So I didn't bother spending time testing it up in advance.
253
253
254
254
<CodeBlock
255
255
language="python"
@@ -487,7 +487,7 @@ And the implementation is [here](https://github.com/DidierRLopes/telegram-text-t
487
487
488
488
### 5. Put it all together
489
489
490
-
Finally, I merged it altogether in [this file](https://github.com/DidierRLopes/telegram-text-to-bluesky-post/blob/main/bluesky-agent.py).
490
+
Finally, I merged it all together in [this file](https://github.com/DidierRLopes/telegram-text-to-bluesky-post/blob/main/bluesky-agent.py).
0 commit comments