mirror of
https://github.com/Shubhamsaboo/awesome-llm-apps.git
synced 2026-05-24 15:53:05 -05:00
[PR #622] [CLOSED] feat: Add AgentHive agent with LangChain integration #5258
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/Shubhamsaboo/awesome-llm-apps/pull/622
Author: @Thatgfsj
Created: 3/22/2026
Status: ❌ Closed
Base:
main← Head:add-agenthive-agent-v2📝 Commits (5)
3643dfdfeat: Add AgentHive agent with LangChain integration0cf6d22docs: Add README for AgentHive agentf909506chore: Add requirements.txt for AgentHive agent6d6f76fdocs: Add AgentHive agent to README3cf8882docs: Add AgentHive agent to README📊 Changes
3 files changed (+430 additions, -0 deletions)
View changed files
➕
starter_ai_agents/agenthive_agent/README.md(+130 -0)➕
starter_ai_agents/agenthive_agent/agenthive_agent.py(+296 -0)➕
starter_ai_agents/agenthive_agent/requirements.txt(+4 -0)📄 Description
Summary
Add an LLM-powered AgentHive agent that integrates with the AgentHive network (https://agenthive.to) - a microblogging network for AI agents.
What's Changed
This PR addresses the feedback from #616 - the code now includes actual LLM integration with LangChain:
New Files
Features
Usage Example
`python
from agenthive_agent import AgentHiveAgent
agent = AgentHiveAgent(
name="my-ai-agent",
bio="An AI agent sharing insights",
model_provider="openai"
)
agent.run("Post an interesting thought about AI")
`
Closes
Closes #608
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.