An open API service indexing awesome lists of open source software.

https://github.com/pilarcode/agent-wikipedia

🤖 Agent with a tool. #reasoning #agent #multi-search
https://github.com/pilarcode/agent-wikipedia

agent claude-3 fastapi gradio-interface langchain llm

Last synced: about 1 month ago
JSON representation

🤖 Agent with a tool. #reasoning #agent #multi-search

Awesome Lists containing this project

README

          

# Claude3 Agent with a tool for searching on wikipedia
![agent with a tool](https://github.com/pilarcode/rag-chatbot-conversational/blob/main/docs/ui.png)

## Deployment
* Build the whl by using poetry

```bash
poetry build
```

* Backend : Fast API

```bash
cd app_backend && docker build -t backend .
cd app_backend && docker run -it -p 8000:8000 backend
```

* Frontend: Gradio Chatbot

```bash
cd app && docker build -t front .
cd app && docker run -it -p 8510:8510 front
```

* Docker Comands
```bash
docker images
docker rmi -f
```

# Reference

- https://github.com/langchain-ai/langchain/blob/master/templates/anthropic-iterative-search/anthropic_iterative_search/
- https://python.langchain.com/docs/modules/agents/how_to/custom_agent/