Skip to content
/ fastgraph Public template

A Plan-and-excute(search) AI Agent demo build with Langgraph and FastHTML.

License

Notifications You must be signed in to change notification settings

etrobot/fastgraph

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

FastGraph

A Plan-and-excute(search) demo with Langgraph and FastHTML.

  • No function-call feature required.
  • Use any LLM api that follows the OpenAI format.
graph TD;
	__start__([__start__]):::first
	planNode(planNode)
	serpTool(serpTool)
	decisionNode(decisionNode)
	__end__([__end__]):::last
	__start__ --> planNode;
	planNode --> serpTool;
	serpTool --> decisionNode;
	decisionNode -.-> planNode;
	decisionNode -.-> serpTool;
	decisionNode -.-> __end__;	
Loading
fastgraph-1.mov

Usage

  1. Copy .env_example to .env and fill out the necessary information.
  2. Run poetry install
  3. Run poetry run python app.py

Inspiration

curiosity

About

A Plan-and-excute(search) AI Agent demo build with Langgraph and FastHTML.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages