"I intend, therefore i am"
This agent framework uses induced schema to simulate learning and generate agents with predictable, mutable and auditable behavior with the goal of alligning to the user.
Agents map spaces, sense spaces then extract information to make decisions.
run
docker-compose up --build
FastAPI
Redis
Supabase
- Anthropic
- Gemini
- OpenAI
- Ollama
- any llm that generates parsable json
curl -X POST http://localhost:8000/agent/create -H "Content-Type: application/json" -d '{
"agent_name": "test",
"agent_type": "gemini",
"agent_prompt": "test prompt",
"schema": {}
}'
curl -X POST http://localhost:8000/agent/create -H "Content-Type: application/json" -d '{
"agent_name": "Exctraction Agent",
"agent_type": "gemini",
"agent_prompt": "make your output a json i need a output feild, reason feild, Entity List feild consiting of entity and hypernym.",
"schema": {}
}'
curl -X GET http://localhost:8000/agent/
curl -X GET http://localhost:8000/agent/<your-agent-id>
curl -X GET http://localhost:8000/upload/list
curl -X POST http://localhost:8000/upload/upload \
-F "file=@./test.pdf" \
-F "upload_as=my_custom_name.pdf"
curl http://localhost:8000/upload/get/mydoc.pdf
