CyranoB commited on
Commit
ece82f6
Β·
1 Parent(s): 4c66227

Fixed readme

Browse files
Files changed (1) hide show
  1. README.md +25 -22
README.md CHANGED
@@ -20,39 +20,42 @@ This is a simple search agent that (kind of) does what [Perplexity AI](https://w
20
  ```
21
  3. Set up API keys:
22
  - You will need API keys for the web search API and LLM API.
23
- - Add your API keys to the `config.py` file.
24
- 4. Run the agent:
25
- ```
26
- python agent.py
27
- ```
28
 
29
  ## Usage
30
 
31
- To use the agent, simply run the `agent.py` script and enter your question when prompted. The agent will return a generated answer based on web search results.
32
-
33
- Example:
34
  ```
35
- $ python agent.py
36
- Enter a question: What is the capital of France?
 
 
 
 
 
 
 
 
37
 
38
- Based on the information from web searches, the capital of France is Paris. Paris is the largest city in France and has been the country's capital since the 12th century. It is located in north-central France along the Seine River. As the capital, Paris is the seat of France's national government. Key landmarks include the Eiffel Tower, the Louvre museum, and the Notre-Dame cathedral. Paris is also a major global city known for its art, fashion, cuisine and culture.
39
- ```
 
 
 
 
 
40
 
41
- ## Configuration
 
42
 
43
- - `config.py`: Contains configuration settings for the agent, including API keys.
44
- - `agent.py`: The main agent script that accepts user input, performs web searches, and generates answers.
45
- - `search.py`: Handles making web search requests and extracting relevant snippets from the results.
46
- - `llm.py`: Interfaces with the language model API to generate answer text based on the web search information.
47
 
48
- ## Dependencies
 
49
 
50
- - `requests`: For making HTTP requests to web search and LLM APIs
51
- - `openai`: For interfacing with the OpenAI language model API
52
- - `googlesearch-python`: For performing Google web searches
53
 
54
  ## License
55
 
56
- This project is licensed under the MIT License. See the `LICENSE` file for details.
57
 
58
  Let me know if you have any other questions! The key components are using a web search API to find relevant information, extracting the key snippets from the search results, passing that as context to a large language model, and having the LLM generate a natural language answer based on the web search context.
 
20
  ```
21
  3. Set up API keys:
22
  - You will need API keys for the web search API and LLM API.
23
+ - Add your API keys to the `.env` file. Use `dotenv.sample` to create this file.
 
 
 
 
24
 
25
  ## Usage
26
 
 
 
 
27
  ```
28
+ ➜ python ./search_agent.py --provider groq -o text "Write a linkedin post on how Sequoia Capital AI Ascent 2024 is interesting"
29
+ [21:41:34] Using mixtral-8x7b-32768 on groq with temperature 0.0 search_agent.py:78
30
+ [21:41:35] Optimized search query: Sequoia Capital AI Ascent 2024 interest search_agent.py:248
31
+ [21:41:36] Found 10 sources search_agent.py:252
32
+ [21:41:37] Managed to extract content from 7 sources search_agent.py:256
33
+ [21:41:42] Filtered 21 relevant content extracts search_agent.py:263
34
+ ────────────────────────────────────────────────────────────────────────── Response from groq ──────────────────────────────────────────────────────────────────────────
35
+ πŸš€ Sequoia Capital's AI Ascent 2024 conference brought together some of the brightest minds in AI, including founders, researchers, and industry leaders. The event was
36
+ a unique opportunity to discuss the state of AI and its future, focusing on the promise of generative AI to revolutionize industries and provide amazing productivity
37
+ gains.
38
 
39
+ 🌟 Highlights of the conference included talks by Sam Altman of OpenAI, Dylan Field of Figma, Alfred Mensch of Mistral, Daniela Amodei of Anthropic, Andrew Ng of AI
40
+ Fund, CJ Desai of ServiceNow, and independent researcher Andrej Karpathy. Sessions covered a wide range of topics, from the merits of large and small models to the rise
41
+ of reasoning agents, the future of compute, and the evolving AI ecosystem.
42
+
43
+ πŸ’‘ One key takeaway from the event is the recognition that we are in a 'primordial soup' phase of AI development. This is a crucial moment for the technology to
44
+ transition from being an idea to solving real-world problems efficiently. Factors like cheap compute power, fast networks, ubiquitous supercomputers, and readily
45
+ available data are enabling AI as the next significant technology wave.
46
 
47
+ πŸ”œ As we move forward, we can expect AI to become an even more significant part of our lives, revolutionizing various sectors and offering unprecedented value creation
48
+ potential. Stay tuned for the upcoming advancements in AI, and let's continue to explore and harness its vast capabilities!
49
 
50
+ _For more information, check out the [Sequoia Capital AI Ascent 2024 conference recap](https://www.sequoiacap.com/article/ai-ascent-2024/)._
 
 
 
51
 
52
+ #AI #ArtificialIntelligence #GenerativeAI #SequoiaCapital #AIascent2024
53
+ ─────────────────────────────────────────────────────────────────────────────────── ──────────────────────────────────────────────────────────────────────────────────
54
 
55
+ ```
 
 
56
 
57
  ## License
58
 
59
+ This project is licensed under the Apache License Version 2.0. See the `LICENSE` file for details.
60
 
61
  Let me know if you have any other questions! The key components are using a web search API to find relevant information, extracting the key snippets from the search results, passing that as context to a large language model, and having the LLM generate a natural language answer based on the web search context.