Saul Goodman

Results 12 issues of Saul Goodman

Hi! Thanks for putting together this helpful refresher on linear algebra and calculus ([link](https://stanford.edu/~shervine/teaching/cs-229/refresher-algebra-calculus#calculus) for context)! At the risk of being overly pedantic, I noticed that your definition of the...

More of a nice-to-have. Since building the index involves calls to GPT-3, it might be nice to have a verbose output option that counts the number of tokens involved, which...

Hello, I noticed a discrepancy in prompt (not completion) token counting. Here's a minimum working example: ``` import os import openai from transformers import GPT2TokenizerFast os.environ["OPENAI_API_KEY"] = "for you" tokenizer...

this will make it easier for new devs to grasp how we're interacting with embeddings and vector dbs ref to https://github.com/jerryjliu/gpt_index/pull/108 and https://github.com/jerryjliu/gpt_index/pull/103

This PR adds a reader for a string iterable. This is useful if you're working on an application in which you can easily produce, say, a list of strings you'd...

would be a great way to explore large texts

Now that we've added retries with exponential backoff in https://github.com/jerryjliu/gpt_index/pull/215, it would be cool to add support for "picking up where you left off". From the example in https://github.com/jerryjliu/gpt_index/issues/210: ```...

enhancement

Today, if I build a gpt index like this: ``` >>> index = GPTTreeIndex(documents, prompt_helper=prompt_helper) > Building index from nodes: 502 chunks 0/5029 10/5029 ... ``` This may take a...

Sometimes, the agent will claim to have used a tool, when in fact it that is not the case. Here is a minimum working example, following the steps for a...

I absolutely love the idea of this repo, and am very hopeful about its future. I loved it so much that I managed to get the download off testflight. However,...

type: trouble shooting