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
- Host: GitHub
- URL: https://github.com/pilarcode/agent-wikipedia
- Owner: pilarcode
- Created: 2024-04-24T17:31:55.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-04-27T10:43:43.000Z (over 1 year ago)
- Last Synced: 2024-04-27T11:41:16.340Z (over 1 year ago)
- Topics: agent, claude-3, fastapi, gradio-interface, langchain, llm
- Language: Jupyter Notebook
- Homepage:
- Size: 231 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Claude3 Agent with a tool for searching on wikipedia
## 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/