Hemanth HM

Results 207 comments of Hemanth HM

@tomByrer cool. Does something like: ``` objectLilteralRegex = /^\s*[\w-"']+ *:/ ``` be useful? (I'm ready to cook a module ;))

@tomByrer Congrats on `volt`. We need to build the regex further, as of now it just matches `key:` Update: `{\s*[\w-"']+ *:[]^\s*[\w-"']+ *}` matches all your cases.

Yes, that comes close; Examples for `py`: The format is useful for a quick glance. ``` >>>help(print) print(...) print(value, ..., sep=' ', end='\n', file=sys.stdout, flush=False) Prints the values to a...

Wow! This went unnoticed in the barrage of issues.

Well, same with just invoking `GeminiMultiModal()` without a `model_name`, it should basically pick up `GEMINI_MM_MODELS[0]` ```py model_name: str = Field( default=GEMINI_MM_MODELS[0], description="The Gemini model to use." ) ```

```py >>> import google.generativeai as genai >>> for m in genai.list_models(): ... print(m.name) ... models/chat-bison-001 models/text-bison-001 models/embedding-gecko-001 models/gemini-1.0-pro models/gemini-1.0-pro-001 models/gemini-1.0-pro-latest models/gemini-1.0-pro-vision-latest models/gemini-pro models/gemini-pro-vision models/embedding-001 models/aqa ```

> error is not because of the model name https://github.com/run-llama/llama_index/issues/12094#issuecomment-2008149304

So, I created a fresh evn and it seems to be [working](https://github.com/hemanth/notebooks/blob/main/notebooks/Youtube_Query_LlamaIndex_Gemini.ipynb) I suspect it was t do with the `API_KEY`.

``` ❯ ollama --version Warning: could not connect to a running Ollama instance Warning: client version is 0.1.23 ``` ``` ❯ ollama run llava Error: unmarshal: invalid character 'p' after...