Spaces:
Running
Running
Fixed readme
Browse files
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 `
|
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 |
-
|
36 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
37 |
|
38 |
-
|
39 |
-
|
|
|
|
|
|
|
|
|
|
|
40 |
|
41 |
-
|
|
|
42 |
|
43 |
-
|
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 |
-
|
|
|
49 |
|
50 |
-
|
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
|
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.
|