
<div class="card col-sm-12 col-md-6 m-0 p-0 border border-warning mx-auto text-center">
<div class="card-body m-0 p-0">
<span class="display-4">LOOSE NOTES</span>
</div>
</div>
<div class="card col-sm-10 p-0 m-2 border mx-auto component-comment-note">
<div class="card-body p-1 m-0">
<p class="p-0 m-0"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="p-0 m-0 bi bi-sticky" viewBox="0 0 16 16">
<path d="M2.5 1A1.5 1.5 0 0 0 1 2.5v11A1.5 1.5 0 0 0 2.5 15h6.086a1.5 1.5 0 0 0 1.06-.44l4.915-4.914A1.5 1.5 0 0 0 15 8.586V2.5A1.5 1.5 0 0 0 13.5 1zM2 2.5a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 .5.5V8H9.5A1.5 1.5 0 0 0 8 9.5V14H2.5a.5.5 0 0 1-.5-.5zm7 11.293V9.5a.5.5 0 0 1 .5-.5h4.293z"/>
</svg><span class="h5">[comparing results for [What is answer.ai (from Howard & Ries)?]](/2023/12/14/comparing-results-for-what-is-answerai-from-howard-and-ries/)</span></p>
<p class="p-1 m-1">For other systems on this theme, see:

- Perplexity, You.com, Bard, and Bing at [[What is answer.ai (from Howard & Ries)?]](/2023/12/12/what-is-answerai-from-howard-and-ries/). 
- [Tavily[What is answer.ai (from Howard & Ries)?]](/tavily-what-is-answerai-from-howard-and-ries/)
</p>
</div></div>





I used a simple prompt here: [trying_you_api.py (GitHub Gist)](https://gist.github.com/danielsgriffin/07bbce17cc213d1e56e63a58c08febeb)

It was largely the below, with the function cutting the context as soon as it passed 2000 tokens (iteratively adding the web result title and description from You.com) 

```
prompt_string = f"Use the results to help write a brief answer to this question: {query}\n Results: "
prompt_string_with_retrieved_context = add_dicts_to_context(prompt_string, results["hits"])
```


<div class="card"><div class="card-header">Evaluation comment: A pretty simple baseline, though of course this is a day after my early attempts at this query.

Below are five attempts, I've <mark>marked</mark> clear issues.
</div><h5 class="card-title text-center pt-2 mb-0 pb-0">You.com Web Search API, a simple prompt, and gpt-3.5-turbo<span class="search-query-bracket">[</span>What is answer.ai (from Howard & Ries)?<span class="search-query-bracket">]</span></a></h5>
<div class="card-body pt-2">

> Answer.AI is an AI R&D lab founded by Jeremy Howard and Eric Ries. It creates practical end-user products based on foundational research breakthroughs. The lab has received a USD10m investment. Jeremy Howard is a deep learning researcher at fast.ai and the University of Queensland. He has experience in the field and has previously co-founded Kaggle. Eric Ries is the founding director of Answer.AI and is known for creating Lean Startup and the Long-Term Stock Exchange. The lab aims to use AI to improve people's lives and make it accessible to everyone.

> Answer.AI is an AI R&D lab founded by Jeremy Howard and Eric Ries. It aims to create practical end-user products based on research breakthroughs in AI. The lab is supported by a USD10m investment. Jeremy Howard has previous experience as the co-founder of Kaggle and fast.ai. The lab focuses on creating AI solutions that can provide accurate and insightful answers to questions. <mark>They have also developed an AI tutor app called Answer.AI that provides tutoring services on iPhones, iPads, and iPod touch devices.</mark>

> Answer.AI is a new kind of AI R&D lab founded by Jeremy Howard and Eric Ries. They aim to create practical end-user products based on foundational research breakthroughs in artificial intelligence. The lab is supported by a $10 million investment. Jeremy Howard, the founding CEO, is also known for his work at Kaggle and fast.ai. <mark>This lab focuses on developing AI technologies that provide answers to various questions and can be used for educational purposes, as seen in their AI tutor app.</mark>

> Answer.ai is a new kind of AI R&D lab created by Jeremy Howard and Eric Ries. It focuses on developing practical end-user products based on foundational research breakthroughs. Supported by a $10 million investment, Answer.ai aims to utilize AI technology to create innovative solutions. Jeremy Howard, the founding CEO, has a background in deep learning and previously co-founded Kaggle and fast.ai. The lab's mission aligns with Howard's expertise and experience in the field. Overall, Answer.ai aims to apply AI in a way that benefits people's lives and can be accessible to everyone.

> Answer.AI, founded by Jeremy Howard and Eric Ries, is a new kind of AI R&D lab that focuses on creating practical end-user products based on foundational research breakthroughs. The lab has received a USD10m investment and aims to develop AI solutions that can answer various questions accurately and insightfully.

</div>


