Skip to content

Latest commit

 

History

History
97 lines (65 loc) · 2.53 KB

README.md

File metadata and controls

97 lines (65 loc) · 2.53 KB

PostBot 3000 AI Agent

Try it out: PostBot 3000

PostBot 3000 is an open-source project that shows how to build a powerful AI agent and stream responses and generate artifacts. This project makes it easier for anyone looking to implement similar solutions.

Features

  1. OpenSource: All the code (agent-ui & agent-service) is open-source and available on GitHub.
  2. Artifacts: The posts content generated by agent is streamed in Artifacts (like Claude).
  3. Agent Python Backend: The agent is built using LangGraph Python, for AI workflows and FastAPI for creating a robust API.

Agent Workflow

agent

Agent In Action

AgentUI Action

Tech Stack

Try it Out

  1. Clone the repository
git clone https://github.com/ahmad2b/postbot3000.git
  1. Create a .env file based on the .env.example file and add your API in both agent-service and agent-ui directory.

  2. Install the dependencies for agent-service:

cd agent-service
poetry install
  1. Run the development server for agent-service:
poetry run uvicorn app.main:app --reload
  1. Install the dependencies for agent-ui:
cd agent-ui
npm install
# or
yarn install
# or
pnpm install
  1. Run the development server for agent-ui:
npm run dev
# or
yarn dev
# or
pnpm dev
  1. Open http://localhost:3000 with your browser to see the result.

Community & Connect

I'm excited to see this project helping developers build better AI agents! If you're exploring AI agents or building something exciting, I'd love to hear about your journey.

Find me around the web:

If this project helped your development journey, consider giving it a ⭐ to help others find it!


Inspiration