Complex question answering in LLMs with enhanced reasoning and information-seeking capabilities.
Python
206
73 commits
updated Oct 30, 2023

Unlock complex question answering in LLMs with enhanced chain-of-thought reasoning and information-seeking capabilities.
The purpose of this project is to extend LLMs ability to answer more complex questions through chain-of-thought reasoning and information-seeking actions.
We are excited to release the initial version of AutoAgents, a proof-of-concept on what can be achieved with only well-written prompts. This is the initial step towards our first big milestone, releasing and open-sourcing the AutoAgents 7B model!
Come try out our Huggingface Space!
This project demonstrates LLMs capability to execute a complex user goal: understand a user's goal, generate a plan, use proper tools, and deliver a final result.
For simplicity, our first attempt starts with a Web Search Agent.

Ask your AutoAgent to do what a real person would do using the internet:
For example:
1. Recommend a kid friendly movie that is playing at a theater near Sunnyvale. Give me the showtimes and a link to purchase the tickets
2. What is the average age of the past three president when they took office
3. What is the mortgage rate right now and how does that compare to the past two years
We are actively developing a few interesting things, check back here or follow us on Twitter for any new development.
If you are interested in any other problems, feel free to shoot us an issue.
This repo contains the entire code to run the search agent from your local browser. All you need is an OpenAI API key to begin.
To run the search agent locally:
git clone https://github.com/AutoLLM/AutoAgents.git
cd AutoAgents
pip install -r requirements.txt
autoagents packagepip install -e .
export OPENAI_API_KEY=sk-xxxxxx
streamlit run autoagents/agents/spaces/app.py
This should open a browser window where you can type your search query.
Python
81.0%
Jupyter Notebook
16.5%
Shell
2.5%
Complex question answering in LLMs with enhanced reasoning and information-seeking capabilities.
Python
206
73 commits
updated Oct 30, 2023

Unlock complex question answering in LLMs with enhanced chain-of-thought reasoning and information-seeking capabilities.
The purpose of this project is to extend LLMs ability to answer more complex questions through chain-of-thought reasoning and information-seeking actions.
We are excited to release the initial version of AutoAgents, a proof-of-concept on what can be achieved with only well-written prompts. This is the initial step towards our first big milestone, releasing and open-sourcing the AutoAgents 7B model!
Come try out our Huggingface Space!
This project demonstrates LLMs capability to execute a complex user goal: understand a user's goal, generate a plan, use proper tools, and deliver a final result.
For simplicity, our first attempt starts with a Web Search Agent.

Ask your AutoAgent to do what a real person would do using the internet:
For example:
1. Recommend a kid friendly movie that is playing at a theater near Sunnyvale. Give me the showtimes and a link to purchase the tickets
2. What is the average age of the past three president when they took office
3. What is the mortgage rate right now and how does that compare to the past two years
We are actively developing a few interesting things, check back here or follow us on Twitter for any new development.
If you are interested in any other problems, feel free to shoot us an issue.
This repo contains the entire code to run the search agent from your local browser. All you need is an OpenAI API key to begin.
To run the search agent locally:
git clone https://github.com/AutoLLM/AutoAgents.git
cd AutoAgents
pip install -r requirements.txt
autoagents packagepip install -e .
export OPENAI_API_KEY=sk-xxxxxx
streamlit run autoagents/agents/spaces/app.py
This should open a browser window where you can type your search query.
Python
81.0%
Jupyter Notebook
16.5%
Shell
2.5%